.NET Framework Class Library  

BitVector32.Item Property

Gets or sets the value of the specified section or bit flag.

[C#] In C#, this property is the indexer for the BitVector32 class.

Overload List

Gets or sets the state of the bit flag indicated by the specified mask.

[Visual Basic] Overloads Public Default Property Item(Integer) As Boolean
[C#] public bool this[int] {get; set;}
[C++] public: __property bool get_Item(int);
public: __property void set_Item(int, bool);
[JScript] BitVector32.Item (int)

Gets or sets the value stored in the specified BitVector32.Section.

[Visual Basic] Overloads Public Default Property Item(BitVector32.Section) As Integer
[C#] public int this[BitVector32.Section] {get; set;}
[C++] public: __property int get_Item(BitVector32.Section);
public: __property void set_Item(BitVector32.Section, int);
[JScript] BitVector32.Item (BitVector32.Section)

See Also

BitVector32 Structure | BitVector32 Members | System.Collections.Specialized Namespace