| 1234567891011121314151617181920212223242526272829303132333435 |
- // Licensed to the .NET Foundation under one or more agreements.
- // The .NET Foundation licenses this file to you under the MIT license.
- // See the LICENSE file in the project root for more information.
- namespace System.Reflection
- {
- public readonly struct ParameterModifier
- {
- private readonly bool[] _byRef;
- public ParameterModifier(int parameterCount)
- {
- if (parameterCount <= 0)
- throw new ArgumentException(SR.Arg_ParmArraySize);
- _byRef = new bool[parameterCount];
- }
- public bool this[int index]
- {
- get
- {
- return _byRef[index];
- }
- set
- {
- _byRef[index] = value;
- }
- }
- #if CORECLR
- internal bool[] IsByRefArray => _byRef;
- #endif
- }
- }
|