且构网

分享程序员开发的那些事...
且构网 - 分享程序员编程开发的那些事

检查系统是32位还是64位?

更新时间:2022-04-16 02:22:45

尝试使用此方法获得Win32/win64操作系统的平台.

昏暗
Microsoft.VisualBasic.Devices.ComputerInfo
昏暗 OsPlatForm = OsType.OSPlatform


kaymaf

Try this to get the platform of OS either Win32/win64

Dim
OsType As New Microsoft.VisualBasic.Devices.ComputerInfo
Dim OsPlatForm As String = OsType.OSPlatform


kaymaf