DictionaryEntry.Value Property
[ This article is for Windows Phone 8 developers. If you’re developing for Windows 10, see the latest documentation. ]
Gets or sets the value in the key/value pair.
Assembly: mscorlib (in mscorlib.dll)
The following example demonstrates the Value property. This code example is part of a larger example provided for the DictionaryEntry class.
public void Add(object key, object value) { // Add the new key/value pair even if this key already exists in the dictionary. if (ItemsInUse == items.Length) throw new InvalidOperationException("The dictionary cannot hold any more items."); items[ItemsInUse++] = new DictionaryEntry(key, value); }
Show: