请问C#到底能不能调用API函数啊?
很多人都说C#不能调用API因为已经被Microsoft封装了?真的不能调用吗?大家指点一下啊?
C#这么优秀怎么可能不能调用API呢?
API的调用属于一种外部调用,不能直接引用
如:
[DllImport("USER32.DLL")]
public static extern bool SetForegroundWindow(IntPtr hWnd);
这个就是调用api 中的SetForegroundWindow函数.