如何:检索本地计算机名称
更新:2007 年 11 月
下面的代码示例演示如何检索本地计算机名称(显示在网络上的计算机名称)。通过获取在 Environment 命名空间中定义的 MachineName 字符串,可以完成此操作。
示例
// machine_name.cpp
// compile with: /clr
using namespace System;
int main()
{
Console::WriteLine("\nMachineName: {0}", Environment::MachineName);
return 0;
}