Exemplo n.º 1
0
 static bool AreValidExportArguments(string[] args)
 {
     ExportArgument exportArgs = new ExportArgument(args);
     if (exportArgs.IsValid())
     {
         return true;
     }
     else
     {
         InvalidCommand();
         return false;
     }
 }
Exemplo n.º 2
0
        static bool AreValidExportArguments(string[] args)
        {
            ExportArgument exportArgs = new ExportArgument(args);

            if (exportArgs.IsValid())
            {
                return(true);
            }
            else
            {
                InvalidCommand();
                return(false);
            }
        }