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

PopLastVariable() public method

Removes the variable that was just added.
public PopLastVariable ( ) : CSharpResolver
return CSharpResolver
		public CSharpResolver PopLastVariable()
		{
			if (localVariableStack.Peek() == null)
				throw new InvalidOperationException("There is no variable within the current block.");
			return WithLocalVariableStack(localVariableStack.Pop());
		}
		
CSharpResolver