ICSharpCode.NRefactory.CSharp.Resolver.CSharpResolver.PopLastVariable C# (CSharp) Méthode

PopLastVariable() public méthode

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