Monday, May 17, 2021

【Visual Studio Visual Csharp】Get computer name

 using System;

using System.Collections.Generic; using System.ComponentModel; using System.Data; using System.Drawing; using System.Linq; using System.Text; using System.Threading.Tasks; using System.Windows.Forms; using System.Diagnostics; namespace Get_computer_name { public partial class Form1 : Form { public Form1() { InitializeComponent(); } private void button1_Click(object sender, EventArgs e) { MessageBox.Show("Computer name: " + System.Environment.MachineName.ToString(), "GetComputername"); } } }

No comments:

Post a Comment