/// <summary>
/// This can have any description of the class
/// </summary>
public class MyClass {}
In the above code sample, is there any way I could get the summary
Value.
My objective in such this, is to record objects' actions in a log and in such context, I know what class did what and when.
I can get the Name of the class from this.GetType().Name
but in some situation I will need to have any description associate with it.
If there is any alternative way of having a description of the class other than the XML documentation, then I would like to hear about it.
Thank You,