OracleString.Item[Int32] 屬性
定義
重要
部分資訊涉及發行前產品,在發行之前可能會有大幅修改。 Microsoft 對此處提供的資訊,不做任何明確或隱含的瑕疵擔保。
從位於整數參數 index
所指示之位置的 Value
屬性中取得單一位元組。
public:
property char default[int] { char get(int index); };
public char this[int index] { get; }
member this.Item(int) : char
Default Public ReadOnly Property Item(index As Integer) As Char
參數
- index
- Int32
要擷取的位元組位置。
屬性值
位元組,位於整數參數所指示的位置。
備註
如果 index
指示超過位元組陣列末端的位置,則會引發例外狀況。
若要避免引發例外狀況,請先檢查 IsNull 屬性和 屬性, Length
再讀取 this
。
這個屬性是唯讀的。