KeyValuePair<TKey, TValue>.ToString Method
[ This article is for Windows Phone 8 developers. If you’re developing for Windows 10, see the latest documentation. ]
Returns a string representation of the KeyValuePair<TKey, TValue>, using the string representations of the key and value.
Assembly: mscorlib (in mscorlib.dll)
Return Value
Type: System.StringA string representation of the KeyValuePair<TKey, TValue>, which includes the string representations of the key and value.
The string representation consists of the string representations of the key and value, separated by a comma and a space, and enclosed in square brackets. For example, the ToString method for a KeyValuePair<TKey, TValue> structure with the string Key "Test" and the integer Value 14 returns the string "[Test, 14]".
Note: |
|---|
This method uses the ToString methods provided by the key and value types. Some types do not return useful or informative values for their ToString methods. |
Note: