1

ユーザーがファイルを右クリックしてメニューから選択したときにドキュメントを編集する C# ユーティリティを作成しています。私の質問は、ファイル名の文字列をプログラムに取得して編集できるようにするにはどうすればよいですか?

4

2 に答える 2

0

Windowsアプリを求めている場合に備えて。コンソール アプリと同じことができます。

static class Program
{
    /// <summary>
    /// The main entry point for the application.
    /// </summary>
    [STAThread]
    static void Main(string[] args)
    {
        string myvalue = args[0]; //get first value in arguments
        //do things with my value here

        Application.EnableVisualStyles();
        Application.SetCompatibleTextRenderingDefault(false);
        Application.Run(new Form1(myvalue));
    }
}
于 2013-06-27T19:47:12.230 に答える