using System;
using System.IO;
using System.Runtime.InteropServices;
class MyStream
{
[DllImport("wininet.dll")]
private extern static bool InternetGetConnectedState(out int Description, int ReservedValue);
// API함수 사용을 위한 함수 선언
public static bool IsConnectedToInternet()
{
int Desc;
return InternetGetConnectedState(out Desc, 0);
}
public static void Main(String[] args)
{
Console.WriteLine("인터넷 연결 상태 : {0}", IsConnectedToInternet());
}
}
특정 문자열에서 숫자만 뽑아내기 (0) | 2013.06.29 |
---|---|
크리스탈 리포트 (Crystal Report) 관련 TIPs (0) | 2013.06.21 |
StreamReader & StreamWrite 클래스 (0) | 2013.05.25 |
멀티 스레드.. 동영상 강좌. 좋은것.. ^^ (0) | 2013.05.25 |
멀티 스레드.. 정리.. (0) | 2013.05.25 |