rundll32的使用和使用c#调用dll

rundll32的一个简单的例子:

“rundll32 shell32,Control_RunDLL” - 运行控制面板

既然rundll32都可以使用别的dll,那么编程语言同样也可以调用dll,果然是这样的。

python举例

python可以调用win32api

python win32api

c#举例

https://stackoverflow.com/questions/4806575/how-do-i-use-rundll32-to-swapmousebutton

using System.Runtime.InteropServices;
using System;

class SwapMouse {
    [DllImport("user32.dll")]
    public static extern Int32 SwapMouseButton(Int32 bSwap);
    static void Main(string[] args) {
        if (args.Length > 0 && String.Compare(args[0], "/u", true) == 0)
            SwapMouseButton(0);
        else
            SwapMouseButton(1);
    }
}

“%SystemRoot%\Microsoft.NET\Framework64\v3.5\csc” swap.cs

posted @ 2022-04-06 19:45  叶常落  阅读(2)  评论(0编辑  收藏  举报  来源