Use dll file written by C++ MFC in C#
C#
2
Posts
2
Posters
0
Views
1
Watching
-
I have a dll file written by C++ MFC. I want to use it in C#, but I can't know how to use it. Who can show me how to use it? Thanks a lot!:confused:
-
I have a dll file written by C++ MFC. I want to use it in C#, but I can't know how to use it. Who can show me how to use it? Thanks a lot!:confused:
using System.InteropServices; [dllImport("yourDll")] public static extern type function(params); Aaron