System.Web.Compilation.TagStack.Pop C# (CSharp) Method

Pop() public method

public Pop ( ) : string
return string
		public string Pop ()
		{
			if (tags.Count == 0)
				return null;

			return (string) tags.Pop ();
		}