The Evil that is Block Copy
I've just lost around half an hour of work because of the evil of block copy. I'm seriously thinking of setting up a student project to make block copy not work in Visual Studio. Moving code around is fine, but pasting multiple copies should be forbidden. If your lines of code need to be performed more than once, then put them in a method and call the method. Otherwise you'll have the problems that I had.
I copied the text because the action was the same, but with different data. It would have worked fine if I'd changed all the things in the copy, but of course I forgot and left one as per the original. The result was a nastly little bug which took me half an hour to sort out. If I'd not had the block copy command I would not have done this, and so not had the problem.
What do people think?