Exemple #1
0
	public static void Main (string [] args)
	{
		if (args.Length == 0) {
			Console.WriteLine ("USAGE: xsdump masterlistname");
			return;
		}

		try {
			SchemaDumper.TestDir (args [0], Console.Out);
		} catch (Exception ex) {
			Console.WriteLine (ex);
		}
	}