获取本机主机名的四种方法
获取本机 NetBIOS 名称
lineLog.Computer = Environment.MachineName;
获取本机 NetBIOS 名称
string a = SystemInformation.ComputerName;
获取本机主机名,前提是引用 System.Net
using System.Net;
string b = Dns.GetHostName();
string d = Dns.GetHostEntry("localhost").HostName;
检索环境变量“computername”的值
string c = Environment.GetEnvironmentVariable("computername");
版权归原作者 青松0527 所有, 如有侵权,请联系我们删除。