static SystemInformation () { if (Platform.IsMac) Instance = new MacSystemInformation (); else if (Platform.IsWindows) Instance = new WindowsSystemInformation (); else Instance = new LinuxSystemInformation (); SessionUuid = DateTime.UtcNow.Ticks.ToString (); }
static SystemInformation () { if (Platform.IsMac) Instance = new MacSystemInformation (); else if (Platform.IsWindows) Instance = new WindowsSystemInformation (); else Instance = new LinuxSystemInformation (); SessionUuid = Guid.NewGuid ().ToString (); }
static SystemInformation() { if (Platform.IsMac) { Instance = new MacSystemInformation(); } else if (Platform.IsWindows) { Instance = new WindowsSystemInformation(); } else { Instance = new LinuxSystemInformation(); } SessionUuid = DateTime.UtcNow.Ticks.ToString(); }
static SystemInformation() { if (Platform.IsMac) { Instance = new MacSystemInformation(); } else if (Platform.IsWindows) { Instance = new WindowsSystemInformation(); } else { Instance = new LinuxSystemInformation(); } SessionUuid = Guid.NewGuid().ToString(); }