How can I give a description to a constructor for a custom class?

Simple little question here. I’ve created a class that has several constructors. Several default classes have descriptions for their different constructors so that you know what they do, or what certain variables are. Is there any way I can add a description to my constructors so that when I’m scrolling through them in VisualStudio, I can see what they’re for without having to look back at the original class?

Yes, by typing tripple forward slash above constructor ///

normal comment would be double slash

///


/// Here comes the explanation
///

/// info about variable
/// if your method is not void, you can use this to describe what it returns
These kind of comments can be put into your code if you use visual studio you can right click your method or class etc and find the ‘add comments’.