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: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.Code:///<summary> ///Your help string here ///</summary> public void foo(){}
Anyone knows?




Reply With Quote