VISUAL STUDIO TIPS
Box Selection - Visual Studio C#
Edit multiple lines of code at the same time
Tip 1: Box Selection
Let’s take an example of the following class with integer properties and apply box selection to update int to, let's say, double at one shot.
public class Test {
int x = 10;
int y = 20;
int z = 30;
int l = 40;
}