Gets the NetBIOS name of this local computer.
using System; class Sample { public static void Main() { Console.WriteLine("MachineName: {0}", Environment.MachineName); } }