ICSharpCode.NRefactory.CSharp.Resolver.CSharpResolver.PopLastVariable C# (CSharp) 메소드

PopLastVariable() 공개 메소드

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