카테고리 없음
[C#] 현재 PC의 IP Address 구하는 소스
Geuny
2012. 8. 16. 10:52
IPHostEntry IPHost = Dns.GetHostByName(Dns.GetHostName());
String IP = IPHost.AddressList[0].ToString();