반응형
private static string getIP()
{
Regex regex = new Regex(@"^(\d{1,2}|1\d\d|2[0-4]\d|25[0-5])\.(\d{1,2}|1\d\d|2[0-4]\d|25[0-5])\.(\d{1,2}|1\d\d|2[0-4]\d|25[0-5])\.(\d{1,2}|1\d\d|2[0-4]\d|25[0-5])$");
foreach (System.Net.IPAddress ip in System.Net.Dns.GetHostEntry(System.Net.Dns.GetHostName()).AddressList)
{
if (regex.IsMatch(ip.ToString()))
{
return ip.ToString();
}
}
return null;
}
반응형
'IT개발 > c#' 카테고리의 다른 글
[wpf] 클립보드에 string data를 저장하자 (0) | 2014.05.02 |
---|---|
[c#] c# 에서 Brushes.[] 클래스에서 제공하는 color table 정리 (0) | 2014.04.25 |
[c#] string 데이터를 utf-8 로 인코딩 하여 담아보자 (string to utf-8, encoding) (0) | 2014.04.25 |
[c#] c# 형변환에 대해서 알아보자 (2) | 2014.04.23 |
[WPF] ListBox 안에 Button 넣기 (0) | 2014.04.23 |