This C# code snippet obtains the NetBIOS and DNS computer names of the local computer.
static string GetName () { string netBiosName = System.Environment.MachineName; //return netBiosName; // Following method is deprecated // string dnsName = // System.Net.Dns.GetHostByName("LocalHost").HostName; string dnsName = System.Net.Dns.GetHostName(); return dnsName; }
This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)