ICSharpCode.NRefactory.CSharp.Resolver.CSharpResolver.PushBlock C# (CSharp) Method

PushBlock() public method

Opens a new scope for local variables.
public PushBlock ( ) : CSharpResolver
return CSharpResolver
		public CSharpResolver PushBlock()
		{
			return WithLocalVariableStack(localVariableStack.Push(null));
		}
		
CSharpResolver