tags:

views:

455

answers:

2

How can I get the current CLR Runtime version in a running .NET program ?

+2  A: 

Environment.Version //might want to call ToString()?

David Kemp
+9  A: 

Check out System.Environment.Version property (http://msdn.microsoft.com/en-us/library/system.environment.version.aspx).

Laurent Etiemble
It was right there - thanks.
driis