System.Collections.BitArray.this C# (CSharp) Method

this() public method

public this ( int index ) : bool
index int
return bool
        public bool this[int index]
        {
            get
            {
                return Get(index);
            }
            set
            {
                Set(index, value);
            }
        }