I have written an unmanaged DLL that contains a class. I want to instantiate and call methods on this class from my managed C# program. I have only been able to find ways to call unmanaged functions, but not a way to maintain state in the DLL using an object.
How can I call (non-static) methods on a class in an unmanaged DLL from a managed C# application?
thanks
Bryan
How can I call (non-static) methods on a class in an unmanaged DLL from a managed C# application?
thanks
Bryan