Home All Groups Group Topic Archive Search About
Author
13 Mar 2007 2:13 PM
Itzik M
In which way can i check which version installed on PC
How can i do it through Windows and programmatically

Thanks

Author
13 Mar 2007 9:10 PM
ClayB
Here is one way you can get the framework version.

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

====================
Clay Burch
Syncfusion, Inc.
Author
20 Mar 2007 4:31 PM
Paul Bates
That's one way but it's not the best way.
System.Runtime.InteropServices.RuntimeEnvironment.GetSystemVersion()
will do the trick.

Paul.

ClayB wrote:
Show quote
> Here is one way you can get the framework version.
>
>         string version = typeof(int).Assembly.ImageRuntimeVersion;
>
> ====================
> Clay Burch
> Syncfusion, Inc.
>
>

AddThis Social Bookmark Button