Welcome to mirror list, hosted at ThFree Co, Russian Federation.

ParameterModifier.cs « System.Reflection « corlib « class « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 4615e1931dd84d78d659965349eab797526b0192 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
//
// System.Reflection/ParameterModifier.cs
//
// Author:
// Paolo Molaro (lupus@ximian.com)
//
// 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;}
		}

	}

}