不会C#,但想知道C#调用C++写的动态库的方法.   例如,动态库(testDem.dll)中的接口函数如:
           int test(BYTE * a,int b,int *c, BYTE** d,long * e);   看到一些参考资料说使用DllImport.
    [DllImport("testDem.dll",EntryPoint="test")]
    public static extern int test();//test函数中的参数就不会写了,怎么写?
   
   请教大家一下,C#中怎么调用些接口函数,谢谢.