A very cool feature. I can collapse the code for each class or method of a class, for example here is the full class:
Here is the class with the methods collapsed:Code:class Person { private System.Random randomNumberGenerator; public Person() { randomNumberGenerator = new System.Random(); } public int NewFloorRequest() { //Return randomly generated number return randomNumberGenerator.Next(1,30); } }
And here is the code with the class collapsed:Code:class Person { private System.Random randomNumberGenerator; public Person()... public int NewFloorRequest()... }
You can open the collapsed code whenever you want. Makes editing more rich. One of the features of VS.NETCode:class Person...



LinkBack URL
About LinkBacks


