CSharpUtils.Templates.Runtime.TemplateContext.NewScope C# (CSharp) Method

NewScope() public method

public NewScope ( System.Action Action ) : void
Action System.Action
return void
		public void NewScope(Action Action)
		{
			this.Scope = new TemplateScope(this.Scope);
			Action();
			this.Scope = this.Scope.ParentScope;
		}