BctCleanup.Driver.processFlag(string)

Here are the examples of the csharp api class BctCleanup.Driver.processFlag(string) taken from open source projects. By voting up you can indicate which examples are most useful and appropriate.

1 Example 7

1. Example

Project: corral
Source File: Driver.cs
static bool parseCommandLine(string[] args)
        {
            GlobalConfig.inputFile = "";
            GlobalConfig.outputFile = "";
            GlobalConfig.mainProc = "";

            if (args.Length < 2)
            {
                return false;
            }

            GlobalConfig.inputFile = args[0];
            GlobalConfig.outputFile = args[1];
            
            var rest = new string[args.Length - 2];
            for (int i = 2; i < args.Length; i++) {
                rest[i-2] = args[i];
            }

            var flags = FlagReader.read(rest);
            flags.Iter(f => processFlag(f));

            return true;
        }