Adding Comments to Parameter in DLL
.net, c#, xml
Solution
/// <summary>
/// This method does something.
/// </summary>
/// <param name="zain">Zain to be processed.</param>
/// <returns>True if it went okay, false otherwise.</returns>
Problem
I had created a DLL in .NET ,which includes several function.Now I am suing this DLL in another App I want that whenever the client uses my DLL,somesort of comments must be shown that shows return type,Parameters etc.like this i see people this using XML files.Is there any alternative way? Thanks in meekness