/// <summary>
		/// Moves to next command.
		/// </summary>
		/// <returns>true if there are any pending commands</returns>
		public bool MoveNext()
		{
			_current = NextCommand();
			return _current != null;
		}
示例#2
0
 /// <summary>
 /// Moves to next command.
 /// </summary>
 /// <returns>true if there are any pending commands</returns>
 public bool MoveNext()
 {
     _current = NextCommand();
     return(_current != null);
 }