JsonArrayItem Property
Gets or sets the element at the specified
index.
When the indexer is read, using an invalid index returns
Undefined, just like in JavaScript.
Namespace: KGySoft.JsonAssembly: KGySoft.Json (in KGySoft.Json.dll) Version: 3.0.0
public JsonValue this[
int index
] { get; set; }
Public Default Property Item (
index As Integer
) As JsonValue
Get
Set
public:
virtual property JsonValue default[int index] {
JsonValue get (int index) sealed;
void set (int index, JsonValue value) sealed;
}
abstract Item : JsonValue with get, set
override Item : JsonValue with get, set
- index Int32
- The zero-based index of the element to get or set.
JsonValueThe element at the specified index.
IListTItemInt32