Click here to Skip to main content
15,881,812 members
Articles / IDE
Alternative
Tip/Trick

VS2010 Box Selection with Copy and Paste

Rate me:
Please Sign up or sign in to vote.
4.29/5 (6 votes)
17 May 2010CPOL 7.2K   1   1
A Cooler one for me is the multi-lines simultaneous typingwith which you can accomplish the above task in the following fewer steps1- In the method where you wish to build the list, paste the list of names2- Because compiler will not understand these lines, it will not be correctly...
A Cooler one for me is the multi-lines simultaneous typing
with which you can accomplish the above task in the following fewer steps

1- In the method where you wish to build the list, paste the list of names
2- Because compiler will not understand these lines, it will not be correctly indented, so indent them manually
3- Create a vertical zero-char width box selection before the names
4- Start typing sb.Appen..... (it will be written 20 times :) )
StringBuilder sb = new StringBuilder():
sb.AppendLine("Peter
sb.AppendLine("Paul
sb.AppendLine("Mary
sb.AppendLine("Susan
sb.AppendLine("Joe

5- Repeat step 3 at the end of the names to close the methods and add semicolons

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)


Written By
Microsoft
Egypt Egypt
15+ years of experience in software industry
Writing .NET, Angular, Xamarin, SQL

Comments and Discussions

 
GeneralThanks for this alternate, Muhammad, but I don't think I'm g... Pin
TheyCallMeMrJames18-May-10 2:49
TheyCallMeMrJames18-May-10 2:49 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.