Using namespacing from .NET 2.0 in Visual studio 2003
I need to use "System.Net.NetworkInformation" namespace in .Net 2.0.
Can I use it in visual studio 2003.
Please help...
Please help...
No this is not possible. There is no forward compatibility with .NET v2.0. You cannot use any of the v2.0 features from v1.0/v1.1
Regards,
Vikram
1. My problem that I have to run this applications on other computers. So, I think that the other computers has to include the .Net 2.0
2. Can I use VS .Net 2003 to build application according to the .Net 2.0
Please help...
You can use the Express Edition to use the namespace and build applications for .NET v2.0
1.] Yes you will need to install .NET v2.0 Runtime on every computer where you want your application to run on.
2.] It is not possible to use VS2003 to build applications on .NET v2.0
Regard,
Vikram
Regards...
VS2005 comes with a migration wizard and except for some breaking changes, most code that you write in v1.1 will work in v2.0. You would however need to recompile it for v2.0 when you decide to use 2.0 of the Framework.
For the list of changes and changes that will break existing code in v1.1 take a look here:
Compatibility Considerations and Version Changes
http://www.gotdotnet.com/team/changeinfo/default.aspx
List of Breaking Changes (May 2005)
http://msdn.microsoft.com/library/default.asp?url=/library/en-us/dnnetdep/html/listofbreakingchanges.asp
Apart from the changes documented there everything else should work as it worked on v1.1
Regards,
Vikram