System.Xml.Xsl.IlGen.XmlILVisitor.VisitLiteralInt64 C# (CSharp) Method

VisitLiteralInt64() protected method

Generate code for QilNodeType.LiteralInt64.
protected VisitLiteralInt64 ( QilLiteral ndLong ) : QilNode
ndLong QilLiteral
return QilNode
        protected override QilNode VisitLiteralInt64(QilLiteral ndLong) {
            this.helper.Emit(OpCodes.Ldc_I8, (long) ndLong);
            this.iterCurr.Storage = StorageDescriptor.Stack(typeof(long), false);
            return ndLong;
        }
XmlILVisitor