Property this
- Namespace
- DisCatSharp.Common
- Assembly
- DisCatSharp.Common.dll
this[ReadOnlySpan<char>]
Gets or sets a value corresponding to given key in this dictionary.
public TValue? this[ReadOnlySpan<char> key] { get; set; }
Parameters
keyReadOnlySpan<char>Key to get or set the value for.
Property Value
- TValue
Value matching the supplied key, if applicable.
this[string]
Gets or sets a value corresponding to given key in this dictionary.
public TValue? this[string key] { get; set; }
Parameters
keystringKey to get or set the value for.
Property Value
- TValue
Value matching the supplied key, if applicable.