ListEnumerator.ToString Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Returns a description of the content of the element in the list that the enumerator is currently pointing to.
public:
override System::String ^ ToString();
public override string ToString ();
override this.ToString : unit -> string
Public Overrides Function ToString () As String
Returns
A string that contains a description of the current list element.
Remarks
The following example creates a list, and then prints the content of the first and second elements in the list.
{
List list = new List(Types::Integer);
ListEnumerator enumerator;
// Add some elements to the list
list.addEnd(1);
list.addEnd(2);
list.addStart(3);
// Set the enumerator
enumerator = list.getEnumerator();
// Go to beginning of enumerator
enumerator.reset();
//Go to the first element in the List
enumerator.moveNext();
// First element is 3 as this was added to start of list
print enumerator.toString();
pause;
enumerator.moveNext();
//Print second element in list (1)
print enumerator.toString();
pause;
}