Advertisement
xXolitudEe

[Minatude] IsLinux

Dec 12th, 2016
26
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 0.16 KB | None | 0 0
  1. public static bool IsLinux
  2. {
  3.     get
  4.     {
  5.         int p = (int) Environment.OSVersion.Platform;
  6.         return (p == 4) || (p == 6) || (p == 128);
  7.     }
  8. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement