My project has a class with several methods, and many of the methods are overloaded. To access any specific method in my large class, I have to scroll for an unusually long time. The class is so big, sometimes finding a particular method can be difficult. I would like to be able to collapse (or fold) some of the methods, so that it is easier to work inside of my class.I was thinking about #region
but, I will need to have one for each of my methods.
How can I collapse (fold) my methods?