#if _WIN32
const string DLL_NAME = "uFCoder-x86.dll"; // for x86 target
#elif _WIN64
const string DLL_NAME = "uFCoder-x86_64.dll"; // for x64 target
#else // #elif _ARM
const string DLL_NAME = "uFCoder-arm.dll"; // for ARM target
#endif
Does anyone know what's happening right here? I tried calling my cs file from MainPage and run in debug 64/84. By right, it should change accordingly when i toggle between running in 64/84 but after moving the file to a new location it stuck at else condition all the way and the return went wrong as well. Im running this in UWP Visual studio.