OS bit 체크
[DllImport("kernel32.dll", SetLastError = true, CallingConvention = CallingConvention.Winapi)]
[return: MarshalAs(UnmanagedType.Bool)]
public static extern bool IsWow64Process([In] IntPtr hProcess, [Out] out bool lpSystemInfo);
private static bool Is64Bit()
{
bool retVal;
IsWow64Process(Process.GetCurrentProcess().Handle, out retVal);
return retVal;
}
신뢰사이트 자동 등록 (0) | 2012.08.07 |
---|---|
WAV 파일 재생 (0) | 2012.04.19 |
WebBrowser 컨트롤 모든 문서 다운로드 완료체크 (0) | 2012.04.04 |
Build Cross-Platform Mobile Apps using C# and .NET (0) | 2012.03.16 |
http://kongmks.blog.me/10012352792 (0) | 2012.03.10 |