i have a C# project and some 2 different libraries: one of them is x86 (awesomium) and another x64. When i run the project i get error because of assembly difference. Isn't it possible to use x86 and x64 libraries on same project?
Asked
Active
Viewed 289 times
0
-
2A 64 bit process can only load 64 bit DLLs, a 32 bit process can only load 32 bit DLLs. – Alex K. Jun 13 '16 at 11:46
-
@twa No, they will not. Because of an emulation layer (WOW64), 64-bit versions of Windows can run 32-bit applications, but that does *not* mean that 32-bit libraries can be loaded into 64-bit projects (or vice versa). – Cody Gray - on strike Jun 13 '16 at 12:08
-
@Cody Thank you for the info, I didn't know that I will edit the comment. – Twahanz Jun 13 '16 at 12:10