public void BlankArgs()
        {
            string[]         args    = new string[] { "", "" };
            DataFreshConsole console = new DataFreshConsole();

            console.Start(args);
        }
        public void NoArgs()
        {
            string[]         args    = new string[] {};
            DataFreshConsole console = new DataFreshConsole();

            console.Start(args);
        }
Exemple #3
0
        public static void Main(string[] args)
        {
            DataFreshConsole console = new DataFreshConsole();

            console.Start(args);
        }