Property this
this[TKey]
Gets or sets array element.
public TValue this[TKey index] { get; set; }
Parameters
index
TKeyIndex of the array element.
Property Value
- TValue
this[int]
Gets or sets array element.
public TValue this[int index] { get; set; }
Parameters
index
intIndex of the array element.
Property Value
- TValue
this[TKey[]]
Sets the same value to all the items with the specified keys.
public TValue this[TKey[] keys] { set; }
Parameters
keys
TKey[]Array of keys.
Property Value
- TValue