System.Collections.BitArray.this C# (CSharp) 메소드

this() 공개 메소드

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