views:

451

answers:

3

How can I get the OS details using C# code in my WPF application?

+3  A: 

Have a look at System.Environment It has property OSVersion

Daniel Elliott
+5  A: 

You can get OS information from System. Environment.OSVersion Here

Firoz
+5  A: 

The Environment class provides properties that can be used to obtain system information.

Darin Dimitrov