BitField.BitField.this C# (CSharp) 메소드

this() 공개 메소드

i ビット目の値を読み書き。
/// i が範囲外のとき発生。 ///
public this ( int i ) : BitField
i int
리턴 BitField
		public BitField this[int i]
		{
			set
			{
				this.Assign(i, i, value);
			}
			get
			{
				return this.Sub(i);
			}
		}

Same methods

BitField::this ( int m, int l ) : BitField