How to identify the currently executing operating system in C#

2 Answers

0 votes
using System;

class Program
{
    static void Main() {
        OperatingSystem os = Environment.OSVersion;
        PlatformID pid = os.Platform;
        
        switch (pid) {
            case PlatformID.Win32NT:
            case PlatformID.Win32S:
            case PlatformID.Win32Windows:
            case PlatformID.WinCE:
                Console.WriteLine("Windows operating system");
                break;
            case PlatformID.Unix:
                Console.WriteLine("Unix operating system");
                break;
            default:
                Console.WriteLine("Invalid identifier");
                break;
        }
    }
}




/*
run:

Unix operating system

*/

 



answered Nov 18, 2023 by avibootz
0 votes
namespace WinFormsApp1
{
    public partial class Form1 : Form
    {
        public Form1()
        {
            InitializeComponent();
        }

        private void button1_Click(object sender, EventArgs e)
        {
            OperatingSystem os = Environment.OSVersion;
            PlatformID pid = os.Platform;

            switch (pid)
            {
                case PlatformID.Win32NT:
                case PlatformID.Win32S:
                case PlatformID.Win32Windows:
                case PlatformID.WinCE:
                    textBox1.Text = "Windows operating system";
                    break;
                case PlatformID.Unix:
                    textBox1.Text = "Unix operating system";
                    break;
                default:
                    textBox1.Text = "Invalid identifier";
                    break;
            }
        }
    }
}




/*
 * run:
 *
 * Windows operating system
 * 
 */

 



answered Nov 18, 2023 by avibootz

Related questions

1 answer 171 views
2 answers 222 views
1 answer 123 views
1 answer 270 views
1 answer 115 views
...