Beispiel #1
0
        public static string CompileFromTL(string tl, string defaultNamespace)
        {
            var      compiler = new TLSchemaCompiler(defaultNamespace);
            TLSchema schema   = compiler.GetTLSchemaFromTL(tl);

            return(compiler.Compile(schema));
        }