BitsetsNET.UncompressedBitArray.Get C# (CSharp) Method

Get() public method

Return whether the given index is a member of this set
public Get ( int index ) : bool
index int the index to test
return bool
        public bool Get(int index)
        {
            return array.Get(index);
        }