• C#加载dll 创建类对象


    //加载dll 创建类对象
    string
    sqlightAssembly = Path.Combine(AppDomain.CurrentDomain.BaseDirectory, "system.data.sqlite.dll"); Assembly lib = Assembly.LoadFrom(sqlightAssembly); foreach (Type t in lib.GetExportedTypes()) { if(t.FullName == "System.Data.SQLite.SQLiteFactory") return (DbProviderFactory)Activator.CreateInstance(t); }
    //获取CPU类型
    private
    ProcessorType GetProcessorArch() { using (System.Management.ManagementClass processors = new System.Management.ManagementClass("Win32_Processor")) { foreach (System.Management.ManagementObject processor in processors.GetInstances()) { int AddressWidth = int.Parse(processor["AddressWidth"].ToString()); int Architecture = int.Parse(processor["Architecture"].ToString()); //See Win32_Processor Class for details if (AddressWidth == 32) return ProcessorType.x86; if (AddressWidth == 64 && Architecture == 9) return ProcessorType.x64; if (AddressWidth == 64 && Architecture == 6) return ProcessorType.IPF; } } throw new NotSupportedException(); }
  • 相关阅读:
    Filecoin:一种去中心化的存储网络(二)
    Filecoin:一种去中心化的存储网络(一)
    HTTP
    数据结构中的查找
    剑指offer-高质量的代码
    C++中STL容器的比较
    PBFT算法的相关问题
    springmvc最全约束
    springmvc入门(一)
    spring入门(一)
  • 原文地址:https://www.cnblogs.com/profession/p/5062559.html
Copyright © 2020-2023  润新知