Is there a proper way of describing a Dictionary type variable or a KeyValuePair with documentation comments in C#.
Something like this,
/// <summary>
/// User credentials
/// </summary>
/// <key>username</key>
/// <value>password</value>
private static Dictionary<string, string> credentials;