Real-Time push server in C++ may i use it as unmanaged dlls so i can work on it using C# ?
-
Hello Guys.. i am about to work on sdk that built in C/C++ ... how i can communicate with it using C# ? it`s requires C++ language which is hard to learn in a few days... Real-Time push server in C++ may i use it as un-managed dll`s so i can work on it using C# ?
-
Hello Guys.. i am about to work on sdk that built in C/C++ ... how i can communicate with it using C# ? it`s requires C++ language which is hard to learn in a few days... Real-Time push server in C++ may i use it as un-managed dll`s so i can work on it using C# ?
Yes, you should be able to create a C++/CLI Assembly (DLL) which exposes functionality to C# via ref classes. Those managed classes can call into the C/C++ SDK to do the necessary work. Reference the C++/CLI assembly from your C# code and call into it... profit!