Installed version

  • Thread starter Thread starter Itzik M
  • Start date Start date
I

Itzik M

In which way can i check which version installed on PC
How can i do it through Windows and programmatically

Thanks
 
Here is one way you can get the framework version.

string version = typeof(int).Assembly.ImageRuntimeVersion;

====================
Clay Burch
Syncfusion, Inc.
 
That's one way but it's not the best way.
System.Runtime.InteropServices.RuntimeEnvironment.GetSystemVersion()
will do the trick.

Paul.
 
Back
Top