Call static C# method from unmanaged C

  • Thread starter Thread starter Chris Bruce
  • Start date Start date
..NET doesn't really provide a standard DLL interface. You can, however,
interact with .NET through COM Interop. The C dll will need to use COM to
create an instance of a COM object and call methods on that object that then
turn around and call the static method.
 
Back
Top