vote up 11 vote down star
5

What are some of the new features that can be used in .NET 2.0 that are specific to C# 3.0/3.5 after upgrading to Visual Studio 2008? Also, what are some of the features that aren't available?

Available

  • Lambdas
  • Extension methods (by declaring an empty System.Runtime.CompilerServices.ExtensionAttribute)
  • Automatic properties
  • Object initializers
  • Collection Initializers
  • LINQ to Objects (by implementing IEnumerable extension methods, see LinqBridge)

Not Available

  • Expression trees
  • WPF/Silverlight Libraries
flag

14% accept rate

7 Answers

vote up 14 vote down

You can use any new C# 3.0 feature that is handled by the compiler by emitting 2.0-compatible IL and doesn't reference any of the new 3.5 assemblies:

  • Lambdas (used as Func<..>, not Expression<Func<..>> )
  • Extension methods (by declaring an empty System.Runtime.CompilerServices.ExtensionAttribute)
  • Automatic properties
  • Object Initializers
  • Collection Initializers
  • LINQ to Objects (by implementing IEnumerable<T> extension methods, see LinqBridge)
link|flag
vote up 4 vote down

Pretty much everything! Daniel Moth covers this here and here. That only leaves runtime support: LINQ-to-Objects is provided by LINQBridge - which leaves just bigger APIs like Expression support, and tools like LINQ-to-SQL. These are too big to be reasonably ported back to .NET 2.0, so I'd use .NET 3.5 for these.

link|flag
vote up 4 vote down

I cover this in an article on my site.

Almost all C# 3.0 features are available when targeting .NET 2.0. For extension methods, you need to define an extra attribute. Expression trees aren't available at all. Query expression support is based on a translation followed by "normal" C# rules, so you'll need something to provide the Select, Where etc methods. LINQBridge is the de facto standard "LINQ to Objects in .NET 2.0" implementation. You may well want to declare the delegates in the Func and Action delegate families to make it easier to work with lambda expressions - and then remove them if/when you move to .NET 3.5

link|flag
vote up 3 vote down

To define extension methods, you'll need to supply the following class if you're targeting .NET 2.0:

namespace System.Runtime.CompilerServices {
  [AttributeUsage(AttributeTargets.Method | AttributeTargets.Class | AttributeTargets.Assembly)]
    sealed class ExtensionAttribute : Attribute { }
}
link|flag
I also had to do this (found you suggesting this on another site) to be able to use Ninject 1.0 for 2.0 in a 3.5 SP1 project. Very wierd... – Ruben Bartelink Jan 21 at 12:31
vote up 2 vote down

There was a previous discussion about something similar you may also want to read too:

http://stackoverflow.com/questions/140239/targeting-net-framework-35-using-net-20-runtime-caveats

link|flag
vote up 2 vote down

You can use Mono's version of the System.Core which fully supports LINQ & Expression Trees. I compiled its source against .net 2.0, and now I can use it in my .net2.0 projects. This is great for projects that needs to be deployed on win2k, where .net3.5 is not available.

link|flag
do these expression trees require .Net 2.0 SP1? – Lucas May 19 at 16:18
nope. plain old .NET 2.0. Works great even on win2k machines. – Omer Mor Nov 24 at 8:56
vote up 1 vote down

Lambdas & Extension methods are handled purely by the compiler and can be used with the .Net 2.0 framework.

link|flag
1  
Lambdas as delegates, yes. But lambdas as Expressions rely on the Expression class(es) from .NET 3.5. – Marc Gravell Oct 6 '08 at 11:40

Your Answer

Get an OpenID
or

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