OperatingSystem 를 사용해서 윈도우 버전을 구할수 있습니다.
전체 소스 :
WATWindowsVersion.zip
아래는 주요 소스 입니다.
=================================================================
namespace WATWindowsVersion
{
public partial class frmMain : Form
{
public frmMain()
{
InitializeComponent();
}
private void frmMain_Load(object sender, EventArgs e)
{
OperatingSystem os = Environment.OSVersion;
Version v = os.Version;
if (5 == v.Major && v.Minor>0)
{
txtResult.Text += "Windows XP" + "\r\n";
}
else
{
txtResult.Text += "그 외 OS" + "\r\n";
}
txtResult.Text += os.ServicePack + "\r\n";
txtResult.Text += "Build : "+v.Build + "\r\n";
txtResult.Text += "Revision : " + v.Revision + "\r\n";
}
}
}
'스터디 > C#.NET:자료' 카테고리의 다른 글
간단한 메세지박스 보이게 하는 소스 (C# .NET 사용) (0) | 2010.10.04 |
---|---|
C#, DLL 만들어 using으로 사용하기 #2 (1) | 2010.10.04 |
C#, DLL 만들어 using으로 사용하기 #1 (0) | 2010.10.04 |
C# 폼 닫히지 않게 (0) | 2010.10.01 |
this [] 사용하기 (0) | 2010.09.30 |
ListView 아이템 이동하기 (1) | 2010.09.29 |
경로명으로 파일 리스트 가져오기 (0) | 2010.09.27 |
DataGridView 사용하기 (0) | 2010.09.13 |
MDB 파일 다루기 (0) | 2010.09.13 |
C# 으로 작성한 프로그램 배포시 주의사항 (0) | 2010.09.04 |