Castle.MonoRail.Framework.Helpers.FormHelper.CheckboxList.MoveNext C# (CSharp) Method

MoveNext() public method

Advances the enumerator to the next element of the collection.
The collection was modified after the enumerator was created.
public MoveNext ( ) : bool
return bool
			public bool MoveNext()
			{
				hasMovedNext = true;
				hasItem = enumerator.MoveNext();
				
				if (hasItem) index++;
				
				return hasItem;
			}