Hi all.
let's say I have class A and class B. Class A's definition is:
/// <summary>
/// This is the class documentation.
/// </summary>
public class A
{
/// <summary>
/// This is the documentation for attribute.
/// </summary>
public int attribute;
...
}
I want to access the documentation from class A (ie. those strings that read 'This is the class documentation.' and 'This is the documentation for attribute.') in class B programatically. Is there a way to do this? using reflection, perhaps?
Thanks for your help :)