I'm still learning C# and I don't know if it's possible but if I summary a class, I want this comment to show when I instantiate it in another class.
I want to do this:
/// <summary>
/// This is my class
/// </summary>
class MyClass {}
// in the main for examples
class Program
{
// And I want the comments I write shown here when I hover it
MyClass m = new MyClass()
}
Is it possible guys?
MyClass? Even if you usevar, when you hovervar, it still shows up the correct class and its summary.MyClassthat is inMyClass m.