ParameterModifier.cs 436 B

1234567891011121314151617181920212223242526
  1. //
  2. // System.Reflection/ParameterModifier.cs
  3. //
  4. // Author:
  5. // Paolo Molaro ([email protected])
  6. //
  7. // Copyright (c) 2001 Ximian, Inc
  8. using System;
  9. namespace System.Reflection {
  10. public struct ParameterModifier {
  11. private bool[] data;
  12. public ParameterModifier (int paramaterCount) {
  13. data = new bool [paramaterCount];
  14. }
  15. public bool this [int index] {
  16. get {return data [index];}
  17. set {data [index] = value;}
  18. }
  19. }
  20. }