Managed C++: ///<summary></summary> blocks.

Associate
Joined
22 Jul 2004
Posts
230
Location
Nottingham, UK
I have a managed c++ dll and i want to add summary comments to methods like so....

Code:
/// <summary>
/// This method does...
/// </summary>
/// <returns>a string</returns>
String^ GetSomething(){
   ....
}

But this does not add the correct metadata to the dll.
Is there a special way of doing this in C++ CLI?
Is there an attribute based equivalent?
 
Back
Top Bottom