Environment.MachineName Property gets the NetBIOS name of this local computer. : Environment « Development « VB.Net
- VB.Net
- Development
- Environment
Environment.MachineName Property gets the NetBIOS name of this local computer.
Imports System
Class Sample
Public Shared Sub Main()
Console.WriteLine("MachineName: {0}", Environment.MachineName)
End Sub
End Class
Related examples in the same category