. net dll没有出现在using指令中
本文关键字:using 指令 dll net | 更新日期: 2023-09-27 18:15:17
对于大多数。net dll,您可以将它们添加为引用,然后通过使用指令(例如using mydll;
)将它们"导入"到代码中。我有一个。net二进制编译与MSVC,我可以添加作为参考,但它从来没有出现在使用指令。为什么会发生这种情况?
如果你正在使用c++/C库,你将不得不使用dllimport, c#不会只"看到"非托管代码。
[DLLImport( "mydll.dll" )];
static extern void MyMethod(int parm1, int parm2);
,那么你应该能够从你的代码中调用MyMethod,就像你在其他地方一样。