Пример #1
0
        //-
        #endregion
        public static void PrintVersionToConsole()
        {
            var currentAssembly = Assembly.GetExecutingAssembly().GetName();

            Console.WriteLine(currentAssembly.Name + " " + currentAssembly.Version);
            Console.WriteLine(UsageInfoHelper.GetWebsite());
            Console.WriteLine();
        }
Пример #2
0
        public static int Main(string[] args)
        {
            Program vennVcf = new Program(_programDescription, _commandlineExample, UsageInfoHelper.GetWebsite(), _programName);

            vennVcf.DoParsing(args);
            vennVcf.Execute();

            return(vennVcf.ExitCode);
        }