BlackLinks.Routing.RouteWalker.MoveNextPart C# (CSharp) Method

MoveNextPart() public method

public MoveNextPart ( ) : bool
return bool
        public bool MoveNextPart()
        {
            if(this.IsLastPart)return false;
            this.CurrentPartIndex++;
            return true;
        }