首页 > 其他 > 详细

获取机器名

时间:2016-06-29 13:11:45      阅读:142      评论:0      收藏:0      [点我收藏+]

Environment.MachineName;
System.Net.Dns.GetHostName();
System.Windows.Forms.SystemInformation.ComputerName;
System.Environment.GetEnvironmentVariable("COMPUTERNAME");

Environment.MachineName
The name of this computer is established at system startup when the name is read from the registry. If this computer is a node in a cluster, the name of the node is returned.

Environment.MachineName and System.Windows.Forms.SystemInformation.ComputerName are identical and returns the computer‘s NetBIOS name. This name is restricted to 15 characters and only visible on the LAN.

System.Net.Dns.GetHostName() returns the computer‘s TCP/IP based hostname. By adding a domain suffix to the hostname you can resolve your computer‘s IP address across LANs / on the internet.

System.Environment.GetEnvironmentVariable("COMPUTERNAME") returns the computer name set during installation. NetBIOS and hostname are initially set to the same name.

获取机器名

原文:http://www.cnblogs.com/dennysong/p/5626275.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!