Posted
Filed under .NET/C#
C#으로 자신의 IP를 확인 하는 방법입니다.
using System.Net;
using System.Net.Sockets;
//네임스페이스를 추가 해 줍시다..

public string Get_MyIP()
{
	IPHostEntry host = Dns.GetHostByName(Dns.GetHostName());
	string myip = host.AddressList[0].ToString();
	return myip;
}
return 값으로는 ip를 리턴 해주고 있습니다.. 근데 현재 이 소스는 닷넷 프레임워크 2.0 이상에서는 사용을 하지 않도록 권장(?) 하고 있습니다.. 아래 코드는 GetHostEntry를 이용하여 IP 주소를 받아 내고 있습니다. 하지만 비스타 이상에서는 IPv6으로 IP주소를 출력하고 있습니다. if문을 통하여 IP주소 체계가 IPv4인 경우에만 출력하도록 해 주고 있습니다.
/// 
/// 클라이언트 IP 주소 얻어오기...
/// 
public static string Client_IP
{
	get
    {
		IPHostEntry host = Dns.GetHostEntry(Dns.GetHostName());
		string ClientIP = string.Empty;
        for (int i = 0; i < host.AddressList.Length; i++)
        {
			if (host.AddressList[i].AddressFamily == AddressFamily.InterNetwork)
            {
				ClientIP = host.AddressList[i].ToString();
            }
		}
		return ClientIP;
	}
}
외부 IP 주소 가져오기 - http://bluene.net/blog/547
2011/04/22 23:09 2011/04/22 23:09
Posted
Filed under .NET/C#
        
//RS-232C Serial 통신을 위하여 현재 열려 있는 ComPort찾기위한 Method
private void GetComport()
{
    lstComPort.Items.Clear();   // 리스트 박스 초기화
     foreach (string comPort in SerialPort.GetPortNames())
    {
        if(!Char.IsDigit(Char.Parse(comPort.Substring(4,1))))
            lstComPort.Items.Add(comPort.Substring(0,4));
        else
            lstComPort.Items.Add(comPort);
    }
}
foreach 내부안에서 바로 Items.Add 해서 추가 해도 되지만, 저 같은 경우에는 마지막 단락에 요상한 문자가 붙더라구요...(COM4$ 이런식으로 말입니다.) 그래서 if 문 써서.. 마지막에 쓰레기 문자가 출력되는걸 막기 위해서 if문으로 약간 처리 좀 했습니다.
2011/04/21 22:38 2011/04/21 22:38