摘要:
AnyCPU的应用程序+AnyCPU的类库 在x86的操作系统上,应用程序会在32位CLR上运行,所以它引用的类库也会在32位CLR上运行;在x64操作系统上,应用程序许会在64位CLR上运行,所以它引用的类库也会在64为CLR上运行。 x86的应用程序+AnyCPU的类库 在x86的操作系统上,应 阅读全文
摘要:
代码: 1 using System; 2 using System.Reflection; 3 namespace Assembly_Load 4 { 5 class Program 6 { 7 public static void Get_GAC_assembly() 8 { 9 string 阅读全文