views:

502

answers:

2

After installing Visual Studio 2008, I have chosen Visual C++ but instead I wanted to choose C# environment. How do I change it from C++ to C# environment?

+6  A: 

Tools -> Import and Export Settings -> Import Selected Environment Settings... -> Make selection whether to save current settings -> Select C# under the default setting folder

JTA
+1  A: 

You could also perform from the command line:

devenv /resetsettings

And then choose all over again when prompted.

Note: I prefer "General Developer Settings" is you are going to do development in different technology areas (C++, C#, VB, etc).

Bill