문제

I have read some thread about EZCAD right here : Loading a C++ DLL in C#

But I do not find a solution code from the author. Is there someone who can give an example of code themselves?

올바른 솔루션이 없습니다

다른 팁

You can do it this way:

public Test

{

[DllImport("myunmanaged.dll", CharSet = CharSet.Ansi)]

private extern static int UnmanagedFunction(int type, int dest);

}
라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top