Visual Studio Features

  • Copy a class and directly paste in another vs instance
  • There is no hassle of creating one class in another instance and paste the previous content.
  • Analyze Code cleanup ==> Configure code clean up
  • Select “Format Document”
  • Ctrl+/  to comment a section
  • Again press Ctrol+/ to uncomment.
				
					  //if (true)
  //{
  //    var a = 5;

  //}
				
			
  • It works for variable names, class names etc

Leave a Comment