C#桌面程序启动时传入参数
程序员文章站
2023-12-27 20:25:21
using System;using System.Collections.Generic;using System.Linq;using System.Windows.Forms; namespace WindowsFormsApplication8{ static class Program { ......
using system;
using system.collections.generic;
using system.linq;
using system.windows.forms;
namespace windowsformsapplication8
{
static class program
{
/// <summary>
/// 应用程序的主入口点。
/// </summary>
[stathread]
public static void main(string[] args) //加参数,接收值,当通过拖拽文件启动程序时,则参数数组的第一个值就是这个文件的路径
{
if (args.count()>0)
{
messagebox.show(args[0]);
}
application.enablevisualstyles();
application.setcompatibletextrenderingdefault(false);
application.run(new form1());
}
}
}