Lucene.Net.Support.BitSetSupport.Set C# (CSharp) Метод

Set() публичный статический Метод

Sets the bit at the given index to true.
public static Set ( this bits, int index ) : void
bits this The BitArray object.
index int The position to set to true.
Результат void
        public static void Set(this BitArray bits, int index)
        {
            bits.Set(index, true);
        }

Same methods

BitSetSupport::Set ( this bits, int startIdx, int endIdx ) : void
BitSetSupport::Set ( this bits, int fromIndex, int toIndex, bool value ) : void