NGWS SDK Documentation  

This is preliminary documentation and subject to change.
To comment on this topic, please send us email at ngwssdk@microsoft.com. Thanks!

BitArray.Get

Retrieves the value of the bit at a specific position in the BitArray.

[Visual Basic]
Public Function Get( _
   ByVal index As Integer _
) As Boolean
[C#]
public bool Get(
   int index
);
[C++]
public: bool Get(
   int index
);
[JScript]
public function Get(
   index : int
) : Boolean;

Parameters

index
The index of the value to retrieve.

Return Value

The value of the bit at position index.

Exceptions

Exception Type Condition
ArgumentException index is less than zero.

OR, index is greater than or equal to the number of elements in the BitArray.

See Also

BitArray Class | BitArray Members | System.Collections Namespace