I've been developing a WPF application with .NET framework 3.5 and later had to change to 3.0. Some of the features like Func<T> (System.Core.dll) and Linq is not available now and VS throws compile errors to my existing code. How can I use 3.5 features in 3.0?

link|improve this question

78% accept rate
Why can't you stick to version 3.0? – Graviton Jan 29 '10 at 6:02
feedback

1 Answer

up vote 2 down vote accepted

Try this: How to Use .NET 3.5 Features and C# 3.0 Syntax in .NET 2.0?.

Here are the steps:

  1. Referencing LinqBridge
  2. Referencing System.Core
  3. Implementing features yourself
link|improve this answer
Are those steps or alternatives? I haven't looked at it, but I figured LinqBridge would do it all. – Merlyn Morgan-Graham Sep 18 '11 at 1:43
feedback

Your Answer

 
or
required, but never shown

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