Answer by serge.karalenka for How does C# version, VS version, and .NET...
A table will suit better here, but here is my answer:Language: C# 1, .NET Frameworks 1.0, 1.1, VS 2003Language: C# 2, .NET Frameworks 2.0, VS 2005 (main feature added: generics)Language: C# 3, .NET...
View ArticleAnswer by goric for How does C# version, VS version, and .NET framework...
The Visual Studio version controls which C# / .NET versions you can use; you can't write C# using .NET 4.0 features in Visual Studio 2005, as the IDE was released prior to the C# version. However you...
View ArticleAnswer by Avner Shahar-Kashtan for How does C# version, VS version, and .NET...
Check out the table in the Wikipedia entry for C#, which gives you a good overview of different versions of C# language (and compiler), and the version of .NET and Visual Studio they depend on....
View ArticleAnswer by Thinking Sites for How does C# version, VS version, and .NET...
Visual Studio is the IDE. It supports a number of versions of .Net, depending on which version of VS you have. VS2010 supports as far back as .Net 2 and as high as .Net 4 (not counting current...
View ArticleAnswer by James Michael Hare for How does C# version, VS version, and .NET...
The C# version is the version of the compiler invoked to compile source code, the VS version is the version of the visual studio IDE, which may support multiple framework versions. The version of the...
View ArticleAnswer by SLaks for How does C# version, VS version, and .NET framework...
The C# version controls which language feature you can use; it is independent of everything else. (since it's only the compiler)You can use (most) newer language features even when targeting older...
View ArticleHow does C# version, VS version, and .NET framework version, etc fit together?
I am quite confused by how all the parts to the MS stack fit together. How does the C# version, Visual Studio version, .NET framework version, and ASP.NET version (is this the same as the .net...
View Article