Welcome to collectivesolver - Programming & Software Q&A with code examples. A website with trusted programming answers. All programs are tested and work.

Contact: aviboots(AT)netvision.net.il

Buy a domain name - Register cheap domain names from $0.99 - Namecheap

Scalable Hosting That Grows With You

Secure & Reliable Web Hosting, Free Domain, Free SSL, 1-Click WordPress Install, Expert 24/7 Support

Semrush - keyword research tool

Boost your online presence with premium web hosting and servers

Disclosure: My content contains affiliate links.

39,885 questions

51,811 answers

573 users

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 155 views
2 answers 193 views
1 answer 112 views
1 answer 257 views
1 answer 103 views
...