본문 바로가기
프로그래밍/C#

[c#] local ip 찾는 함수

by 뽀도 2018. 7. 3.
private string GetLocalIP()
{
string myIP = string.Empty;
IPHostEntry host = Dns.GetHostEntry(Dns.GetHostName());
foreach (var ip in host.AddressList)
{
if (ip.AddressFamily == System.Net.Sockets.AddressFamily.InterNetwork)
{
myIP = ip.ToString();
return myIP;
}
}
return myIP;
}



반응형

'프로그래밍 > C#' 카테고리의 다른 글

string , string builder 차이  (0) 2019.03.05
[c#] Mutex , semaphore, monitor  (0) 2019.02.17
리플렉션  (0) 2017.08.13
전처리기.  (0) 2017.08.13
c# ThreadPool 사용  (0) 2017.06.26

댓글