Installed version

I

Itzik M

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

Thanks
 
C

ClayB

Here is one way you can get the framework version.

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

====================
Clay Burch
Syncfusion, Inc.
 
P

Paul Bates

That's one way but it's not the best way.
System.Runtime.InteropServices.RuntimeEnvironment.GetSystemVersion()
will do the trick.

Paul.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top