System.Xml.Xsl.XsltOld.Compiler.CompileAvt C# (CSharp) Method

CompileAvt() private method

private CompileAvt ( string avtText ) : ArrayList
avtText string
return System.Collections.ArrayList
        internal ArrayList CompileAvt(string avtText)
        {
            bool constant;
            return CompileAvt(avtText, out constant);
        }

Same methods

Compiler::CompileAvt ( string avtText, bool &constant ) : ArrayList

Usage Example

Ejemplo n.º 1
0
        internal static Avt CompileAvt(Compiler compiler, string avtText) {
            Debug.Assert(compiler != null);
            Debug.Assert(avtText != null);

            bool constant;
            ArrayList list = compiler.CompileAvt(avtText, out constant);
            return constant ? new Avt(avtText) : new Avt(list);
        }
All Usage Examples Of System.Xml.Xsl.XsltOld.Compiler::CompileAvt