Table of Contents

Class DictionaryEntry

Namespace
System.Collections
Assembly
nanoFramework.System.Collections.dll

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

public class DictionaryEntry
Inheritance
DictionaryEntry
Inherited Members
Extension Methods

Constructors

DictionaryEntry(object, object)

Initializes an instance of the DictionaryEntry type with the specified key and value.

public DictionaryEntry(object key, object value)

Parameters

key object

The object defined in each key/value pair.

value object

The definition associated with key.

Fields

Key

Gets or sets the key in the key/value pair.

public object Key

Field Value

object

The key in the key/value pair.

Value

Gets or sets the value in the key/value pair.

public object Value

Field Value

object

The value in the key/value pair.