방법: 로컬 컴퓨터 이름 검색
업데이트: 2007년 11월
다음 코드 예제에서는 로컬 컴퓨터 이름(네트워크에 표시되는 컴퓨터의 이름)을 검색하는 방법을 보여 줍니다. 이 이름을 검색하려면 Environment 네임스페이스에 정의되어 있는 MachineName 문자열을 가져와야 합니다.
예제
// machine_name.cpp
// compile with: /clr
using namespace System;
int main()
{
Console::WriteLine("\nMachineName: {0}", Environment::MachineName);
return 0;
}