If I have this code:
#include "Something.h"
/// <summary>
/// Description...
/// </summary>
public ref class Test
{
};
Is it possible to embed the comments of class Test as metadata in the dll (like in C#)
If this is not possible, how can I restrict the compiler (when using
/doc) from getting the comments from specific files For example,
in the above example, how can I make the compiler not to parse the
comments from the "Something.h" file

Embedding comments in the dll for the managed classes
CyberBob123
The compiler would not compile the comment to dll.
jcuno