I’m moving from .NET Framework 2.0 to 3.5.
I’m not a big fan of LINQ. So beside of that and ‘extensions’ what should I do know and take advantage of in .NET Framework 3.5?
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
I suggest you take a look at the following two articles:
and if you’re using C#, here’s a list of new language features:
and finally for the ASP.NET developer:
There are so many new features, I’m sure you’ll find one you like 😉
Personally, I really like LINQ. It allows to rewrite a lot of code in a much more readable form, e.g. lots of multi-line foreach loops can be replaced with a simple (readable) LINQ version.