struct KeyValuePair<TKey,TValue>

in global :: System . Collections . Generic

Defines a key/value pair that can be set or retrieved.

  • TKey The type of the key.
  • TValue The type of the value.

public TKey Key { get; }

Gets the key in the key/value pair.

  • Returns A that is the key of the .

public TValue Value { get; }

Gets the value in the key/value pair.

  • Returns A that is the value of the .

public string ToString( )

😔 No documentation found.

public void Deconstruct( ref TKey key, ref TValue value )

😔 No documentation found.

public bool Equals( object obj )

😔 No documentation found.

public int GetHashCode( )

😔 No documentation found.

public Type GetType( )

😔 No documentation found.

public KeyValuePair<TKey,TValue>( TKey key, TValue value )

😔 No documentation found.