Created
December 9, 2013 03:18
-
-
Save beginor/7866924 to your computer and use it in GitHub Desktop.
System.Environment.OSVersion on windows, linux and mac osx
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
using System; | |
Console.WriteLine(Environment.OSVersion); | |
// on windows output is like: | |
// Microsoft Windows NT 6.2.9200.0, windows build number included | |
// on linux output is like: | |
// Unix 3.8.0.19, linux kernel included. | |
// on osx output like is like: | |
// Unix 13.0.0.0, mac version. |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment