时间:2021-05-20
直接上代码:
using System;using System.Collections.Generic;using System.Windows.Forms;using System.Management;using System.IO;namespace SqliteAuto{ static class Program { /// <summary> /// 应用程序的主入口点。 /// </summary> [STAThread] static void Main() { Application.EnableVisualStyles(); Application.SetCompatibleTextRenderingDefault(false); string dll32 = System.Windows.Forms.Application.StartupPath + "\\lib\\SQLite32.DLL"; string dll64 = System.Windows.Forms.Application.StartupPath + "\\lib\\SQLite64.DLL"; string dllpath = System.Windows.Forms.Application.StartupPath + "\\System.Data.SQLite.dll"; if (Detect32or64() == "32") { // do 32bit things. try { using (FileStream fs = File.Create(dllpath)) { } File.Copy(dll32, dllpath, true); } catch { Console.WriteLine("ERR"); } } else if (Detect32or64() == "64") { //do 64bit things try { using (FileStream fs = File.Create(dllpath)) { } File.Copy(dll64, dllpath, true); } catch { Console.WriteLine("ERR"); } } Application.Run(new Form1()); } private static string Detect32or64() { try { string addressWidth = String.Empty; ConnectionOptions mConnOption = new ConnectionOptions(); ManagementScope mMs = new ManagementScope("\\\\localhost", mConnOption); ObjectQuery mQuery = new ObjectQuery("select AddressWidth from Win32_Processor"); ManagementObjectSearcher mSearcher = new ManagementObjectSearcher(mMs, mQuery); ManagementObjectCollection mObjectCollection = mSearcher.Get(); foreach (ManagementObject mObject in mObjectCollection) { addressWidth = mObject["AddressWidth"].ToString(); } return addressWidth; } catch (Exception ex) { Console.WriteLine(ex.ToString()); return String.Empty; } } }}声明:本页内容来源网络,仅供用户参考;我单位不保证亦不表示资料全面及准确无误,也不保证亦不表示这些资料为最新信息,如因任何原因,本网内容或者用户因倚赖本网内容造成任何损失或损害,我单位将不会负任何法律责任。如涉及版权问题,请提交至online#300.cn邮箱联系删除。
原来使用Win7的32位系统,进行C#工程的开发,后来重装系统,换成了win7的64位系统调试原来的工程,由于在其中引用了“SQLite”的32位的dll,导致
电脑32位操作系统是不能升级为64位系统的,必须重新新装64位操作系统。32位与64位对文件的处理机制和文件格式所占用的空间都不同,所以不能直接升级,是两个不同
ps64位和32位的区别是; 1、系统不同:32位的软件完美运行于32位的电脑系统,64位的软件可以在64位电脑系统上完美运行。 2、处理速度不同:32位系
32位系统和64位系统的区别有以下四点: 第一,CPU要求不同 CPU有32位和64位之分,32位的CPU只能安装32位系统,而64位的CPU既可以安装
本文实例讲述了C#判断系统是32位还是64位的方法。分享给大家供大家参考。具体如下:publicstaticintGetOSBit(){try{stringad