Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- using System;
- namespace Recetas.CSharp.R0608
- {
- public class PruebaValidador
- {
- public static void Main(String[] args)
- {
- if (args.Length == 2)
- {
- Validador validador = new Validador();
- Console.WriteLine ("\nValidación de {0}.", args[0]);
- bool satisfactorio = validador.ValidarXml(args[0], args[1]);
- // Comprueba la satisfacción en la conversión:
- if (!satisfactorio)
- {
- Console.WriteLine ("**** Validación fallida ****\n");
- }
- else
- {
- Console.WriteLine ("*** Validación satisfactoria ***\n");
- }
- }
- else
- {
- Console.WriteLine ("\nError: Número de parámetros inválido.");
- Console.WriteLine ("Modo de uso: PruebaValidador.exe ArchivoXml.xml ArchivoEsquema.xsd\n");
- }
- }
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement