当前位置:  开发笔记 > 编程语言 > 正文

C#:我想像文件路径一样将消息传递给我的表单应用程序,比如控制台应用程序,我该怎么做?

如何解决《C#:我想像文件路径一样将消息传递给我的表单应用程序,比如控制台应用程序,我该怎么做?》经验,为你挑选了1个好方法。

C#:我想像文件路径一样将消息传递给我的表单应用程序,比如控制台应用程序,我该怎么做?

我被告知我需要找到我的主要方法来添加string [] args,但我不知道哪个是Windows窗体.我的主要方法是哪种C#windows窗体应用程序?



1> Autodidact..:

好的,string [] args = Environment.GetCommandLineArgs()是一个更好的选择.但我会保留以下答案作为替代方案.

查找名为Program.cs的文件,其中包含以下代码片段...

static class Program
{
    /// 
    /// The main entry point for the application.
    /// 
    [STAThread]
    static void Main()
    {
        Application.EnableVisualStyles();
        Application.SetCompatibleTextRenderingDefault(false);
        Application.Run(new Form1());
    }
}

并改为

static class Program
{

    public static string[] CommandLineArgs { get; private set;}

    /// 
    /// The main entry point for the application.
    /// 
    [STAThread]
    static void Main(string[] args)
    {
        CommandLineArgs = args;
        Application.EnableVisualStyles();
        Application.SetCompatibleTextRenderingDefault(false);
        Application.Run(new Form1());
    }
}

然后从表单中访问命令行args ...

Program.CommandLineArgs

推荐阅读
和谐啄木鸟
这个屌丝很懒,什么也没留下!
DevBox开发工具箱 | 专业的在线开发工具网站    京公网安备 11010802040832号  |  京ICP备19059560号-6
Copyright © 1998 - 2020 DevBox.CN. All Rights Reserved devBox.cn 开发工具箱 版权所有