111,120
社区成员
发帖
与我相关
我的任务
分享
using System;
using System.Runtime.InteropServices;
[DllImport("Fanyi.dll", CallingConvention = CallingConvention.StdCall, CharSet = CharSet.Ansi, EntryPoint = "Form2show")]
public static extern void Form2show();
private void Test()
{
Form2show();
}