问题描述
在C#里怎么获取实例的地址!为了调用windowsAPI,需要得到一个结构体实例的地址。
解决方案
解决方案二:
声明的时候声明成ref参数BOOLGetWindowRect(HWNDhWnd,//handleofwindowLPRECTlpRect//addressofstructureforwindowcoordinates);
-->>[DllImport("user32.dll")]publicstaticexternboolGetWindowRect(IntPtrhWnd,refRectanglelpRect);
解决方案三:
这两个方法也可以参考一下Marshal.PtrToStructure();Marshal.StructureToPtr();
时间: 2025-01-21 03:20:43