gpt4 book ai didi

c# - 如何在 C# 中使用 [DllImport ("")]?

转载 作者:IT王子 更新时间:2023-10-29 04:03:26 24 4
gpt4 key购买 nike

我发现了很多关于它的问题,但没有人解释我如何使用它。

我有这个:

using System;
using System.Collections.Generic;
using System.Linq;
using System.Runtime.InteropServices;
using System.Windows.Forms;
using Microsoft.FSharp.Linq.RuntimeHelpers;
using System.Diagnostics;
using System.Runtime.InteropServices;
using System.IO;

public class WindowHandling
{
public void ActivateTargetApplication(string processName, List<string> barcodesList)
{
[DllImport("User32.dll")]
public static extern int SetForegroundWindow(IntPtr point);
Process p = Process.Start("notepad++.exe");
p.WaitForInputIdle();
IntPtr h = p.MainWindowHandle;
SetForegroundWindow(h);
SendKeys.SendWait("k");
IntPtr processFoundWindow = p.MainWindowHandle;
}
}

谁能帮我理解为什么它在 DllImport 行和 public static 行给我一个错误?

有没有人有想法,我该怎么办?谢谢。

最佳答案

您不能在方法内部声明 extern 局部方法,或任何其他具有属性的方法。将您的 DLL 导入移动到类中:

using System.Runtime.InteropServices;


public class WindowHandling
{
[DllImport("User32.dll")]
public static extern int SetForegroundWindow(IntPtr point);

public void ActivateTargetApplication(string processName, List<string> barcodesList)
{
Process p = Process.Start("notepad++.exe");
p.WaitForInputIdle();
IntPtr h = p.MainWindowHandle;
SetForegroundWindow(h);
SendKeys.SendWait("k");
IntPtr processFoundWindow = p.MainWindowHandle;
}
}

关于c# - 如何在 C# 中使用 [DllImport ("")]?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/19450783/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com