.net in code

  • Thread starter Thread starter csharpula csharp
  • Start date Start date
C

csharpula csharp

Hello,

How can I find out the version of the .NET I am running on this machine,
how can I do it from c# code of my running application?

Thanks.
 
csharpula said:
How can I find out the version of the .NET I am running on this machine,
how can I do it from c# code of my running application?

Environment.Version give you the version of the CLR executing
your code.

Arne
 
Back
Top