如何在c#

时间:2017-11-21 22:34:30

标签: java c#

我想将NDS VC Injector编码为WiiU的PC工具(这是我不需要太多帮助的无趣部分) 我需要帮助启动一个带有文本和参数字符串的程序。 当我批量启动时,它看起来像这样" java -jar JNUSTool.jar%TID %% TK%-file。*" 我怎样才能在c#中复制这个?

1 个答案:

答案 0 :(得分:0)

https://docs.microsoft.com/en-us/dotnet/csharp/programming-guide/main-and-command-args/

命令行参数显示为字符串数组。

class TestClass
{
    static void Main(string[] args)
    {
        // Display the number of command line arguments:
        System.Console.WriteLine(args.Length);
    }
}