当前位置: 首页>>代码示例>>C#>>正文


C# CommandLine.ContainsArg方法代码示例

本文整理汇总了C#中System.CommandLine.ContainsArg方法的典型用法代码示例。如果您正苦于以下问题:C# CommandLine.ContainsArg方法的具体用法?C# CommandLine.ContainsArg怎么用?C# CommandLine.ContainsArg使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在System.CommandLine的用法示例。


在下文中一共展示了CommandLine.ContainsArg方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C#代码示例。

示例1: Main

        public static int Main(string[] args)
        {
            AppDomain.CurrentDomain.UnhandledException += new UnhandledExceptionEventHandler(UnhandledEx);
            CommandLine cmd = new CommandLine(args);

            if (cmd.Length < 2)
            {
                Console.WriteLine("");
                Console.WriteLine("GamePower Compiler v1.0");
                Console.WriteLine("");
                Console.WriteLine("Usage: gpc.exe -i <input.prg> -o <output.js>");
                Console.WriteLine("");
                Console.WriteLine("Notes: If the -o argument is not passed, the output file will be created");
                Console.WriteLine("in the caller folder with the .js extension.");
                return -1;
            }

            try
            {
                String filename = cmd["i"];
                FileInfo fi = new FileInfo(filename);
                String inFile = filename;
                String outFile = cmd.ContainsArg("o") ? cmd["o"] : String.Empty;
                GPCompiler Compiler = new GPCompiler();

                String[] lines;
                lines = File.ReadAllLines(filename, cmd.ContainsArg("msdos") ? Encoding.GetEncoding(437) : Encoding.Default);

                List<String> JSOutput = Compiler.Convert(lines.ToList());
                List<String> PreOutput = new List<String>();
                List<String> Output = new List<String>();

                Output.AddRange(PreOutput);
                Output.Add("");
                Output.AddRange(JSOutput);
                Output.Add("");
                Output.Add(Compiler.GPEngineVarName + ".Init(" + Compiler.ProgramProcess + ");");

                String Compiled = String.Join(Environment.NewLine, Output.ToArray());

                String OutputFilename = cmd.ContainsArg("o") ? cmd["o"] : fi.Directory.FullName + fi.Name.Substring(0, fi.Name.Length - fi.Extension.Length) + ".js";
                using (StreamWriter sw = new StreamWriter(OutputFilename)) { sw.WriteLine(Compiled); }
            }
            catch (Exception e)
            {
                Console.Error.WriteLine(e.Message);
                Console.Error.WriteLine(e.StackTrace);
                return -1;
            }

            return 0;
        }
开发者ID:darkguy2008,项目名称:gamepower-free,代码行数:52,代码来源:Program.cs


注:本文中的System.CommandLine.ContainsArg方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。