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