blah blah blah is here! blah blah » Close

up0down
link

I want to develop xml based desktop utilities with VS C#, but office computers r still living on Framework 2 & 3 only.
How should I go ahead with this now??? :(

last answered one year ago

1 answers

up0down
link

You'll just have to forego LINQ to XML (.NET 3.5 or later) and stick with the legacy XmlDocument class.

This isn't as nice to use but it's not too bad and it does have the merit of representing a W3C-compliant XML DOM.

You can, of course, build down to .NET 2.0 (or 3.0) in both VS 2008 or VS 2010 as long as you don't use any later features in your project.

Feedback