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());
}
}
'C#' 카테고리의 다른 글
[C#] 엑셀 행열 전환 (Microsoft.Office.Interop.Excel Switch Row/Column) (0) | 2013.04.12 |
---|---|
[C#]Create a Custom Image Button Control (0) | 2013.03.19 |
[C#] HTTP, FTP Download (1) | 2013.02.18 |
[C#] 마우스 좌표 구하기 (0) | 2013.02.07 |
[C#] 버전 정보 및 컴파일(Build) 날짜 정보 구하기 (0) | 2013.02.05 |