The following code example demonstrates the retrieval of the local machine name (the name of the computer as it appears on a network). You can accomplish this by getting the
Example
В | Copy Code |
---|---|
// machine_name.cpp // compile with: /clr using namespace System; int main() { Console::WriteLine("\nMachineName: {0}", Environment::MachineName); return 0; } |