SystemInfoLibrary
SystemInfoLibrary copied to clipboard
Library for getting System Information. Supports Windows and Linux, Mac OS X, Unity.
Results
1
SystemInfoLibrary issues
Sort by
recently updated
recently updated
newest added
```cs // my code using Newtonsoft.Json; using SystemInfoLibrary.OperatingSystem; var a = OperatingSystemInfo.GetOperatingSystemInfo(); while (true) { Console.WriteLine(JsonConvert.SerializeObject(a.Update(), Formatting.Indented)); Console.ReadKey(); } ``` the ram info never changed ```txt { "Architecture": "64 位",...