我的代码中有一些看起来相当奇怪的行,我试图破译。有谁知道它说的是什么?
[DllImport("kernel32")]
private static extern int GetPrivateProfileString(string section, string key, string def, StringBuilder retVal, int size, string filePath);
答案 0 :(得分:1)
该行称为平台调用,基本上它只是使您的程序可以使用kernel32.dll中的函数GetPrivateProfileString。查看http://www.pinvoke.net/default.aspx/kernel32.GetPrivateProfileString以获取有关该特定功能的更多信息。