vote up 3 vote down star

What are the C# 3.0 language features we can use in an application that targets .Net 2.0 framework ?

PS:I know few like Lambda expressions and var keyword

flag

80% accept rate

2 Answers

vote up 3 vote down check

Please see here:

Using C# 3.0 (.Net 3.5) syntax in a .Net 2.0 application

For a complete run down of what you can and can't do when targeting the .NET 2.0 Framework and using C# 3.0.

In summary:

Extension methods sort-of work, however, they require "System.Runtime.CompilerServices.ExtensionAttribute" in order to work, and this type is found within the System.Core DLL (which is not strictly part of the .NET 2.0 framework).

Query Syntax cannot be used "out of the box" so-to-speak, however, it can be used if a 3rd party DLL (like LINQBridge) is used. This DLL effectively re-implements many of the "missing" types that you need to perform LINQ when targeting the .NET 2.0 framework. It also implements the "ExtensionAttribute" type needed for Extension methods to work, so simply adding/referencing the LINQBridge DLL from your project will enable LINQ, Query Syntax/Expressions and Extension Methods!

link|flag
Jon beat me to it. In a strange twist of fate, the very first comment on the blog post that I've linked to is from Jon Skeet (!) – CraigTP Sep 10 at 10:48
1  
Re the second "You can't" - you can use query syntax - simply that they aren't present unless you use something like LINQBridge. – Marc Gravell Sep 10 at 10:52
@Marc - You're correct. Thanks for pointing that out. I have edited my answer to reflect this fact. – CraigTP Sep 10 at 11:09
The facts are very interesting... I'll accept your answer, as Jon got plenty of reputation :P – Prashant Sep 10 at 12:03
vote up 4 vote down

I have an article on this very topic.

In brief:

Supported:

  • Automatically implemented properties, implicitly typed local variables and arrays, object and collection initializers, anonymous types, partial methods, lambda expressions converted into delegate types.

Partially supported:

  • Extension methods (requires an attribute) and query expressions (requires something like LINQBridge to be useful)

Not supported:

  • Lambdas converted into expression trees

In fact, I have heard that conversion into expression trees is available with the aid of Mono's implementation of System.Core. I haven't tried it yet though... I keep meaning to do so (and then update the page).

link|flag
1  
Yes, I suspect the expression tree stuff would work fine, as long as there is a suitable Expression class. Of course, the exact requirements of that class are not documented in the spec, and if anything is wrong the compiler explodes in a very messy way (much uglier than you would expect). I had much fun just trying a small part of it (marcgravell.blogspot.com/2009/04/…) - the mono option makes more sense for a full version. – Marc Gravell Sep 10 at 10:51
+1, Thanks Jon and Marc :) – Prashant Sep 10 at 12:04

Your Answer

Get an OpenID
or

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