System.Xml.Xsl.XsltOld.Compiler.CompileAvt C# (CSharp) Метод

CompileAvt() приватный Метод

private CompileAvt ( string avtText ) : ArrayList
avtText string
Результат 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

Пример #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