主题:[讨论]DllImport 特性疑问
C# 中的Windows Dll 库没有元数据(metadata),故因此使用DllImport 特性来通知C# 编译器DLL 中实现了的方法和类。但是看下面的示例
[DllImport("advapi32.dll", ExactSpelling=true, SetLastError=true)]
光光 这个 [DllImport("advapi32.dll", ExactSpelling=true, SetLastError=true)]并没有什么信息呀?
我感觉真正提供了这种信息的还是
internal static extern bool OpenProcessToken(IntPtr h, int acc, ref IntPtr phtok);
这个函数声明,不知道大家有什么感想?
[DllImport("advapi32.dll", ExactSpelling=true, SetLastError=true)]
光光 这个 [DllImport("advapi32.dll", ExactSpelling=true, SetLastError=true)]并没有什么信息呀?
我感觉真正提供了这种信息的还是
internal static extern bool OpenProcessToken(IntPtr h, int acc, ref IntPtr phtok);
这个函数声明,不知道大家有什么感想?