我有一个 C++ 中的 DLL,其功能如下:
莱斯梅斯.hpp
bool Sing_For_Me(CInstructment accompaniedBy, string song, string singer);
同时在我的 WPF 应用程序中,我将使用互操作层:
[ DllImport( "musicals.dll", EntryPoint="Sing_For_Me", CharSet=CharSet.Ansi )]
public static extern bool SingForMe(???????, string note, string singer);
如何在 WPF 代码中引用CInstrument ?
似乎有很多使用字符串的例子,你可以只使用某些预定义的数据类型或其他东西吗?