일상+

C# 아이피주소 구하기 본문

컴퓨터공학

C# 아이피주소 구하기

이종준 2009. 6. 23. 13:49
            IPHostEntry IPHost = Dns.GetHostByName(Dns.GetHostName());
            string ipAddr = IPHost.AddressList[0].ToString();
Comments