I Itzik M Mar 13, 2007 #1 In which way can i check which version installed on PC How can i do it through Windows and programmatically Thanks
In which way can i check which version installed on PC How can i do it through Windows and programmatically Thanks
C ClayB Mar 13, 2007 #2 Here is one way you can get the framework version. string version = typeof(int).Assembly.ImageRuntimeVersion; ==================== Clay Burch Syncfusion, Inc.
Here is one way you can get the framework version. string version = typeof(int).Assembly.ImageRuntimeVersion; ==================== Clay Burch Syncfusion, Inc.
P Paul Bates Mar 20, 2007 #3 That's one way but it's not the best way. System.Runtime.InteropServices.RuntimeEnvironment.GetSystemVersion() will do the trick. Paul.
That's one way but it's not the best way. System.Runtime.InteropServices.RuntimeEnvironment.GetSystemVersion() will do the trick. Paul.