Advertisement
Fhernd

PruebaValidador.cs

Jun 3rd, 2016
3,023
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 1.05 KB | None | 0 0
  1. using System;
  2.  
  3. namespace Recetas.CSharp.R0608
  4. {
  5.     public class PruebaValidador
  6.     {
  7.         public static void Main(String[] args)
  8.         {
  9.             if (args.Length == 2)
  10.             {
  11.                 Validador validador = new Validador();
  12.                 Console.WriteLine ("\nValidación de {0}.", args[0]);
  13.                
  14.                 bool satisfactorio = validador.ValidarXml(args[0], args[1]);
  15.                
  16.                 // Comprueba la satisfacción en la conversión:
  17.                 if (!satisfactorio)
  18.                 {
  19.                     Console.WriteLine ("**** Validación fallida ****\n");
  20.                 }
  21.                 else
  22.                 {
  23.                     Console.WriteLine ("*** Validación satisfactoria ***\n");
  24.                 }
  25.             }
  26.             else
  27.             {
  28.                 Console.WriteLine ("\nError: Número de parámetros inválido.");
  29.                 Console.WriteLine ("Modo de uso: PruebaValidador.exe ArchivoXml.xml ArchivoEsquema.xsd\n");
  30.             }
  31.         }
  32.     }
  33. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement