Commenting Like In SMS Installer?

micropathic

Well-known member
Joined
Oct 23, 2003
Messages
75
Is there any type of add-on or utility for vs .net that will allow you to comment out blocks of code at a time? For instance in the SMS Installer utility there is a feature which allows you to highlight a block of code, right click and choose comment and it will comment out that entire block. It seems very convenient and makes it easier to work w/ code imho.
 
Well in C# you can span comments across multiple lines by
opening and closing the comments with /* and */. As for VB.NET,
there is a toolbar (named "Text Editor") that has buttons that
comment and uncomment blocks of highlighted text.
 
Its not a utility, its a toolbar built into the VS.NET IDE. Just
right-click on any toolbar and select Text Editor on the list.
 
Back
Top