vote up 1 vote down star
1

I am confused with both the C# version and .NET framework version. In other words, I want to know the relationship with C# version and .NET framework. E.g: which is C# version in .NET framework 3.0?

flag

0% accept rate

4 Answers

vote up 11 vote down

I am not sure what your actual question is, but if it is what are the current versions..

C#: 3.0
.NET Framework: 3.5

You might also want to take a look at this breakdown chart. It provides the Framework, language and CLR relations.

link|flag
The current framework version is 3.5 SP1 - for example including the ADO.NET Entity Framework not present in version 3.5. – Daniel Brückner Mar 27 at 3:38
Yes, if you follow the link to the framework it will provide the current version. Is SP1 now a mandatory update in windows? – Quintin Robinson Mar 27 at 3:43
thanks for good post!it's very help to me – unknown (google) Mar 27 at 4:02
The chart is wrong, though. The C# that shipped with .NET 1.1 was C# 1.2. Crazy, but there it is... – Marc Gravell Mar 27 at 7:22
Also (for the OP) - note that C# 3 can be used with .NET 2.0 and .NET 3.0, especially if you use something like LINQBridge. – Marc Gravell Mar 27 at 7:24
show 1 more comment
vote up 0 vote down

.net 2 C# 2

.net 3 C# 2

.net 3.5 C# 3

link|flag
While this is the timeline for the versions' releases, they are not so strictly bound to each other. You can use C#3 with .NET 2, 3, & 3.5. At the same time, you could use C# 2 with .NET 2, 3, and, albeit a very limited subset (unless you want to write ugly code), 3.5 – Dan Herbert Sep 6 at 5:27
vote up 1 vote down

C# 1.0 - Managed Code

C# 2.0 - Generics, Nullable Types, Anonymous Delegates, Partial Classes / Methods

C# 3.0 - LINQ, Lambda Expressions, Implicit Variable Typing, Streamlined Object Initialization

// Related? somewhat perhaps

link|flag
vote up 0 vote down

C# is a language.

.Net Framework is a software framework (a collection of classes,data-types,...)

They are not directly relevant to each other.They are two different things.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.