Beispiel #1
0
 static void Main( string[] args )
 {
   if ( args.Length < 1 || args.Length > 1 )
   {
     Console.WriteLine( "Useage: " );
     Console.WriteLine( @"C:\UWT\ClassAssessments Team" );
     Console.WriteLine( "where Team is the team number to assess" );
   }
   else
   {
     ParseWorkbooks pwb = new ParseWorkbooks( args[0] );
   }
   Console.WriteLine( "\nAll done!\nHit Return to exit." );
   Console.ReadLine();
 }  // end of Main()
Beispiel #2
0
 static void Main(string[] args)
 {
     if (args.Length < 1 || args.Length > 1)
     {
         Console.WriteLine("Useage: ");
         Console.WriteLine(@"C:\UWT\ClassAssessments Team");
         Console.WriteLine("where Team is the team number to assess");
     }
     else
     {
         ParseWorkbooks pwb = new ParseWorkbooks(args[0]);
     }
     Console.WriteLine("\nAll done!\nHit Return to exit.");
     Console.ReadLine();
 } // end of Main()