Пример #1
0
        public void BlankArgs()
        {
            string[]         args    = new string[] { "", "" };
            DataFreshConsole console = new DataFreshConsole();

            console.Start(args);
        }
Пример #2
0
        public void NoArgs()
        {
            string[]         args    = new string[] {};
            DataFreshConsole console = new DataFreshConsole();

            console.Start(args);
        }
Пример #3
0
        public static void Main(string[] args)
        {
            DataFreshConsole console = new DataFreshConsole();

            console.Start(args);
        }