Skip to content

Instantly share code, notes, and snippets.

@beginor
Created December 9, 2013 03:18
Show Gist options
  • Save beginor/7866924 to your computer and use it in GitHub Desktop.
Save beginor/7866924 to your computer and use it in GitHub Desktop.
System.Environment.OSVersion on windows, linux and mac osx
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