Method for finding dotnet version

  • Thread starter Thread starter sijo
  • Start date Start date
S

sijo

Hi All,

I am using Visual studio 2002. The dotnet version that comes with
this, is dotnet version 1.0. I have installed dotnet framework version
1.1 recently. How can I associate dotnet version 1.1 with the
VS 2002 ?

Also, what is the dotnet API in C# to find the version of dotnet?

best regards
sijo
 
How can I associate dotnet version 1.1 with the VS 2002 ?

You can't.

Also, what is the dotnet API in C# to find the version of dotnet?

System.Environment.Version



Mattias
 
Hi Sijo,

I think Mattias is correct. the VS.NET2002 is limited to build the
application by .net framework1.0. Also the
VS.NET2003 is targeted at .net1.1. And the System.Enviorment.Version will
give us the executing CLR's version at runtime.

Thanks & Regards,

Steven Cheng
Microsoft Online Support

Get Secure! www.microsoft.com/security
(This posting is provided "AS IS", with no warranties, and confers no
rights.)
 
Back
Top