Property Item
Item[Char[], Int32, Int32]
Gets or sets the value associated with the specified key.
Declaration
public virtual TValue this[char[] key, int offset, int length] { get; set; }
Parameters
Type | Name | Description |
---|---|---|
System.Char[] | key | The key of the value to get or set. |
System.Int32 | offset | The position of the |
System.Int32 | length | The total length of the |
Property Value
Type | Description |
---|---|
TValue |
Item[Char[]]
Gets or sets the value associated with the specified key.
Declaration
public virtual TValue this[char[] key] { get; set; }
Parameters
Type | Name | Description |
---|---|---|
System.Char[] | key | The key of the value to get or set. |
Property Value
Type | Description |
---|---|
TValue |
Item[ICharSequence]
Gets or sets the value associated with the specified key.
Declaration
public virtual TValue this[ICharSequence key] { get; set; }
Parameters
Type | Name | Description |
---|---|---|
ICharSequence | key | The key of the value to get or set. |
Property Value
Type | Description |
---|---|
TValue |
Item[String]
Gets or sets the value associated with the specified key.
Declaration
public virtual TValue this[string key] { get; set; }
Parameters
Type | Name | Description |
---|---|---|
System.String | key | The key of the value to get or set. |
Property Value
Type | Description |
---|---|
TValue |
Implements
System.Collections.Generic.IDictionary<TKey, TValue>.Item[TKey]
Item[Object]
Gets or sets the value associated with the specified key.
Declaration
public virtual TValue this[object key] { get; set; }
Parameters
Type | Name | Description |
---|---|---|
System.Object | key | The key of the value to get or set. |
Property Value
Type | Description |
---|---|
TValue |