Skip to content

Instantly share code, notes, and snippets.

@sholfen
Created September 18, 2014 07:41
Show Gist options
  • Save sholfen/4580ce39968a57cca0f9 to your computer and use it in GitHub Desktop.
Save sholfen/4580ce39968a57cca0f9 to your computer and use it in GitHub Desktop.
Check OS Version
OperatingSystem OS = Environment.OSVersion;
if (OS.Platform == System.PlatformID.MacOSX)
{
Console.WriteLine("It's not Windows OS.");
}
else
{
Console.WriteLine(OS.Platform.ToString());
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment