From a managed DLL, I expose set of classes and public methods from it. Now I want to add help string for the class methods. In C# (Application or Class Libarary), this can be done by simply adding:
Code:
///<summary>
///Your help string here
///</summary>
public void foo(){}
But CLI (managed C++) compiler doesn't understand this. It never generates "summary" for the method! I looked up attributes (like ObsoleteAttribute), but not for adding help string.

Anyone knows?