checking it the current os is a 32bit or 64bit version 檢查作業系統是32位還是64位

zyip發表於2014-04-24

 

            if (System.IntPtr.Size==4)
            {
                Console.WriteLine("32bit os");
            }
            if (System.IntPtr.Size == 8)
            {
                Console.WriteLine("64bit os");
            }

 

 

 

 

相關文章