共用方式為


JsonObject.GetAt(Int32) 方法

定義

取得指定索引的屬性。

public:
 System::Collections::Generic::KeyValuePair<System::String ^, System::Text::Json::Nodes::JsonNode ^> GetAt(int index);
public System.Collections.Generic.KeyValuePair<string,System.Text.Json.Nodes.JsonNode?> GetAt (int index);
member this.GetAt : int -> System.Collections.Generic.KeyValuePair<string, System.Text.Json.Nodes.JsonNode>
Public Function GetAt (index As Integer) As KeyValuePair(Of String, JsonNode)

參數

index
Int32

要取得之配對之以零起始的索引。

傳回

指定索引處的屬性做為索引鍵/值組。

例外狀況

index 小於 0 或大於或等於 Count

適用於