0
kicks
Box Selection in Visual Studio 2010
Every day I am discovering something new with Visual Studio 2010 and In this post I am again going to explain you new interesting feature of Visual Studio 2010. We all required to modify the code in bulk some time and there is a new features for Visual Studio 2010 which enables to made changes in multiple line at same time. Let’s take a simple example like following.using System;
namespace Parallel
{
class Program
{
private int a=10;
private int b=10;
private int c...