Table of Contents

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

key ReadOnlySpan<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

key string

Key to get or set the value for.

Property Value

TValue

Value matching the supplied key, if applicable.