Possible Duplicate:
C#: How to reference generic classes and methods in xml documentation
I want to create a short documentation (in VS2010) for my static function which has one IDictionary<TKey, TValue>
parameter.
for example :
public static string newDocument(IDictionary<string,string> listMap)
{
//the code
}
I want to create a documentation in VS2010 ,when you type /
three times then will generate automatically like as below :
/// <summary>
/// create something
/// </summary>
/// <param name="listMap">Text here</param>
/// <returns></returns>
public static string newDocument(IDictionary<string,string> listMap)
{
//the code
}
I want to write in this way: the dictionary key
is something and the dictionary value
is something else.
How to do that ?