Skip to content

Instantly share code, notes, and snippets.

@patriksvensson
Created June 24, 2016 20:40
Show Gist options
  • Save patriksvensson/0663614acdbc3753a7eafdfdbab6d64b to your computer and use it in GitHub Desktop.
Save patriksvensson/0663614acdbc3753a7eafdfdbab6d64b to your computer and use it in GitHub Desktop.
var platform = (int)Environment.OSVersion.Platform;
if (platform == (int)PlatformID.MacOSX)
{
OperatingSystem = OperatingSystemFamily.OSX;
}
else if ((platform == 4) || (platform == 6) || (platform == 128))
{
OperatingSystem = OperatingSystemFamily.Linux;
}
else if((platform <= 3) || (platform == 5))
{
OperatingSystem = OperatingSystemFamily.Windows;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment