HandleAndProvide() public method

Method which handle input arguments and call appropriate actions
public HandleAndProvide ( string args ) : void
args string
return void
Beispiel #1
0
 static void Main(string[] args)
 {
     try
     {
         Folders f = new Folders();
         f.HandleAndProvide(args);
     }
     catch(Exception ex)
     {
         Console.WriteLine(ex.Message);
         throw ex;
     }
 }