Calyptus.Mvc.PathStack.Peek C# (CSharp) Method

Peek() public method

public Peek ( ) : string
return string
		public string Peek()
		{
			return IsAtEnd ? null : _path[_currentIndex];
		}

Same methods

PathStack::Peek ( int stepsForward ) : string