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 (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?
+1
A:
Try this: How to Use .NET 3.5 Features and C# 3.0 Syntax in .NET 2.0?.
Here are the steps:
- Referencing LinqBridge
- Referencing System.Core
- Implementing features yourself
Ngu Soon Hui
2010-01-29 06:02:51