它在脚本/函数中工作得很好。只要我试图从powershell类调用它-它就会给出错误"type is not defined“。
我设法使用了一些丑陋的技巧来称呼它。使用-PassThru调用Add-Type,并将结果保存在$global:myType中。然后我使用$global:myType.GetMethod('GetSymbolicLinkTarget').invoke($null,$dir)进行间接<em
我试图在powershell中添加一个点结构,以便在winapi GetCursorPos函数中使用。:生成的类型没有定义任何公共方法或属性。我不知道如何在powershell中使用结构,我只找到关于如何创建结构的信息。请参见:
我添加了一个结构,但仍然不知道如何构造它:public struct POINT{public int X;public int Y;pub
如何在powershell中使用GetWindowText API函数?我试过这样做: using System; public class UserWindowssstatic extern IntPtr GetWindowText(IntPtr hWnd, System.Text.StringBuilder text, int count);"@