Hi all ,
I am using Visual Studio 2005 , How do I know its C# Version and
Wat's the difference between C# 1.1,C# 1.0 and C# 2.0 ?
Thanks in advance
Hi all ,
I am using Visual Studio 2005 , How do I know its C# Version and
Wat's the difference between C# 1.1,C# 1.0 and C# 2.0 ?
Thanks in advance
Know the answer? Post it — somebody with the same question will find it here.
Sign in to answer this question
It is the same account you read, post and publish with — and you will come straight back to this page.
ranu haiPosted Dec 12, 2007, 12:14 AM
Sachin GaurPosted Dec 11, 2007, 11:47 PM
string versionNumber = Environment.Version.Major.ToString() + "." + Environment.Version.Minor.ToString();
Differences in difference version of C# comes with differences in .NET framework. With the increased versions there are lot many assemblies have been added such as System.Collections.Generic namespace has been provided from 2.0 onwards.