BitArray.Item[Int32] プロパティ

定義

BitArray の特定位置にあるビット値を取得または設定します。

public:
 property bool default[int] { bool get(int index); void set(int index, bool value); };
public bool this[int index] { get; set; }
member this.Item(int) : bool with get, set
Default Public Property Item(index As Integer) As Boolean

パラメーター

index
Int32

取得または設定する値の、0 から始まるインデックス番号。

プロパティ値

index 位置にあるビットの値。

例外

index が 0 未満です。

または

indexCount 以上になっています。

注釈

このプロパティは、構文 myCollection[index] を使用して、コレクションの特定の要素にアクセスする機能を提供します。

C# 言語では、このキーワード (keyword)を使用して、 プロパティを実装する代わりにインデクサーをItem[]定義します。 Visual Basic は、Item[] を既定のプロパティとして実装しており、同様のインデックス機能を提供します。

このプロパティの値の取得は操作です O(1) 。プロパティの設定も操作です O(1)

適用対象

こちらもご覧ください