Returns an IEnumerator-implemented object that contains all System.Web.UI.HtmlControls.HtmlTableRow objects in the System.Web.UI.HtmlControls.HtmlTableRowCollection collection.
An IEnumerator-implemented object that contains all System.Web.UI.HtmlControls.HtmlTableRow objects in the System.Web.UI.HtmlControls.HtmlTableRowCollection.
Use this method to create an IEnumerator-implemented object that can be iterated through to get each item in the System.Web.UI.HtmlControls.HtmlTableRowCollection collection.
Use the IEnumerator.Current property to get the current element in the collection.
Use the IEnumerator.MoveNext method to move to the next item in the collection.
Use the IEnumerator.Reset method to move the enumerator to the initial position.
You must call the IEnumerator.MoveNext method after creating an IEnumerator-implemented object, or after using the IEnumerator.Reset method to move the enumerator to the first item in the collection. Otherwise, the item represented by the IEnumerator.Current property is undefined.