C#中直接调用exe程序的问题?
我想点击按钮直接调用exe程序但是,在调用之前,还需要将一个字符串IP传递到exe中这样可以实现吗?在exe程序中要在怎么写?在按钮事件里又要怎么调用呢?...
我想 点击按钮直接调用exe程序
但是,在调用之前,还需要将一个字符串IP传递到exe中
这样可以实现吗?
在exe程序中要在怎么写?
在按钮事件里又要怎么调用呢? 展开
但是,在调用之前,还需要将一个字符串IP传递到exe中
这样可以实现吗?
在exe程序中要在怎么写?
在按钮事件里又要怎么调用呢? 展开
1个回答
展开全部
/// <summary>
/// 应用程序的主入口点。
/// </summary>
[STAThread]
static void Main(string[] args)
{
Application.EnableVisualStyles();
Application.SetCompatibleTextRenderingDefault(false);
if (args.Length == 0)
Application.Run(new Form1());
else
Application.Run(new Form1(args));
}
Form1窗体的构造:
string[] args=null;
public Form1()
{
InitializeComponent();
}
public Form1(string[] args)
{
InitializeComponent();
this.args = args;
}
http://www.cnblogs.com/yidianfeng/archive/2011/01/13/1934395.html
/// 应用程序的主入口点。
/// </summary>
[STAThread]
static void Main(string[] args)
{
Application.EnableVisualStyles();
Application.SetCompatibleTextRenderingDefault(false);
if (args.Length == 0)
Application.Run(new Form1());
else
Application.Run(new Form1(args));
}
Form1窗体的构造:
string[] args=null;
public Form1()
{
InitializeComponent();
}
public Form1(string[] args)
{
InitializeComponent();
this.args = args;
}
http://www.cnblogs.com/yidianfeng/archive/2011/01/13/1934395.html
追问
谢谢啊 我知道了
浙江启扬智能科技有限公司
2023-06-12 广告
2023-06-12 广告
Linux 嵌入式系统中,USB 启动模式能够烧写 ARM 的 uboot 的原因主要有以下几个方面:1. USB 启动模式相对于传统的 BIOS 启动模式来说,具有更高的兼容性和灵活性,可以支持更多的硬件设备和操作系统。2. USB 启动...
点击进入详情页
本回答由浙江启扬智能科技有限公司提供
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询