コード例 #1
0
            public ContextStackEntry(Texplate stack, ITexplateContext context)
            {
                this.stack   = stack;
                this.context = context;

                this.stack.contextStack.Push(this.context);
            }
コード例 #2
0
 public IDisposable EnterContext(ITexplateContext context)
 {
     return(new ContextStackEntry(this, context));
 }