欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

C#桌面程序启动时传入参数

程序员文章站 2023-10-28 23:25:16
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());
}
}
}