I'm connecting from c++ solution from CLR project to the C# dll. Now I do it using
#using <MyDotNet.dll>
But for this I need this dll to be present at a compile time, which became a problem. Is there a LoadLibrary and GetProcAddress analogue function for using C# dll from CLR code, so I don't need to have dll at a compile time and the needed method will be invoked from the dll at the runtime?