Class KeyValuePair
Creates a key value pair.
Inheritance
System.Object
KeyValuePair
Inherited Members
System.Object.ToString()
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
Namespace: Telerik.Windows.Controls.Rating
Assembly: Telerik.Windows.Controls.Input.dll
Syntax
public static class KeyValuePair
Methods
Create<TKey, TValue>(TKey, TValue)
Creates the specified key value pair.
Declaration
public static KeyValuePair<TKey, TValue> Create<TKey, TValue>(TKey key, TValue value)
Parameters
TKey
key
The key. |
TValue
value
The value. |
Returns
System.Collections.Generic.KeyValuePair<TKey, TValue>
|
Type Parameters
TKey
|
TValue
|