在C#里怎么获取实例的地址!
在C#里怎么获取实例的地址!为了调用windows API, 需要得到一个结构体实例的地址。 --------------------编程问答-------------------- 声明的时候声明成ref参数
BOOL GetWindowRect(
HWND hWnd, // handle of window
LPRECT lpRect // address of structure for window coordinates
);
-->>
[DllImport("user32.dll")]--------------------编程问答-------------------- 这两个方法也可以参考一下
public static extern bool GetWindowRect(IntPtr hWnd, ref Rectangle lpRect);
Marshal.PtrToStructure();
Marshal.StructureToPtr();
补充:.NET技术 , C#