| 1234567891011121314151617181920212223242526 |
- //
- // System.Reflection/ParameterModifier.cs
- //
- // Author:
- // Paolo Molaro ([email protected])
- //
- // Copyright (c) 2001 Ximian, Inc
- using System;
- namespace System.Reflection {
- public struct ParameterModifier {
- private bool[] data;
-
- public ParameterModifier (int paramaterCount) {
- data = new bool [paramaterCount];
- }
- public bool this [int index] {
- get {return data [index];}
- set {data [index] = value;}
- }
- }
- }
|