Beispiel #1
0
 public static void Main(string[] args)
 {
     var stuffDoer = new StuffDoer();
     if (args != null && args.Length > 0)
     {
         stuffDoer.DoTheStuff();
     }
 }
        public static void Main(string[] args)
        {
            var stuffDoer = new StuffDoer();

            if (args != null && args.Length > 0)
            {
                stuffDoer.DoTheStuff();
            }
        }