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

GetLocalIP()

by 뽀도 2019. 11. 13.

 

- 본인 pc localIP 받는 코드.

 

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
string GetLocalIP()
{
    string result = string.Empty;
 
    var host = Dns.GetHostEntry(Dns.GetHostName());
 
    foreach (var ip in host.AddressList)
    {
        if (ip.AddressFamily == AddressFamily.InterNetwork)
        {
            result = ip.ToString();
            break;
        }
    }
 
    return result;
}
er
반응형

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

[C#] MD5 암호화  (0) 2020.09.03
Dapper 사용시 key/explicitKey  (0) 2020.01.03
Reflection : 객체 이름으로 객체 생성하기.  (0) 2019.07.29
WCF 로그인 서버 공부 및 만들기  (0) 2019.06.03
Wcf : binding  (0) 2019.05.26

댓글