Hello,
I have a class with both a overloaded constructor and a overloaded method.
If I initiate the class with parameters, the idea would be that I then didn't need to fill this information into my method. But as things grow it can get a bit confusing.
I wanted to know if there is a way of either telling C# or Visual Studio not to show the method in the IntelliSense if a certain constructor is called, hopefully in a clean and neat way without any "hacks".
Thanks in advance.