当前位置:编程学习 > C#/ASP.NET >>

在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#
CopyRight © 2022 站长资源库 编程知识问答 zzzyk.com All Rights Reserved
部分文章来自网络,