struct DictionaryEntry
in global :: System . Collections
Defines a dictionary key/value pair that can be set or retrieved.
public DictionaryEntry( object key, object value )
Initializes an instance of the type with the specified key and value.
keyThe object defined in each key/value pair.valueThe definition associated with .
public void Deconstruct( ref object key, ref object value )
No summary.
public object Key { get; set; }
Gets or sets the key in the key/value pair.
- Returns The key in the key/value pair.
public object Value { get; set; }
Gets or sets the value in the key/value pair.
- Returns The value in the key/value pair.
public string ToString( )
😔 No documentation found.
public bool Equals( object obj )
😔 No documentation found.
public int GetHashCode( )
😔 No documentation found.
public Type GetType( )
😔 No documentation found.