Is there a way to get the name of the OS that the user is currently using?
you can use
System.Environment
the class
Environment.OSVersion.ToString()
See Environment.OSVersion Property
Gets an OperatingSystem object that contains the current platform identifier and version number.
You can use the Environment.OSVersion property .
Version version = Environment.OSVersion;
, wikipedia Microsoft Windows. , 6.1.7600, Windows 7, Windows Server 2008 R2.
: API , .
. Environment.OSVersion.ToString() .
Environment.OSVersion.ToString(
, . Win95 Win7.
, , , , .
Source: https://habr.com/ru/post/1736957/More articles:Unexpected generic behavior - javaSet background color for JTabbedPane - javaHow to execute this query in MYSQL? - databaseThe limit of Fermat's factorization method - algorithmint.ToString as HH formatted in DateTime - c #Distance between GIS points - pythonThe main help needed for pointers (double indirection) - cMass inserts in sqlite db on iphone - performanceUpdating a database from an Entity model without losing content - databaseHow to create a dependency property of type Type and assign it in XAML? - .netAll Articles