发布网友 发布时间:2022-05-12 21:41
共1个回答
热心网友 时间:2023-10-24 06:28
首先,如果在C#代码的各处直接调用C++的DLL会不方便;追答public class c
{
[System.Runtime.InteropServices.DllImport( "KERNEL32.DLL" )]
private static extern long WritePrivateProfileString( string section, string key, string val, string filePath );
}
这是在C#中使用API的一个例子,Kernel32.dll就是一个C的DLL;至于怎么封装,就看你应么用了;