Get Enumerator from StringCollection
#include "stdafx.h"
#using <system.dll>
using namespace System;
using namespace System::Collections;
using namespace System::Collections::Specialized;
void main()
{
StringCollection ^strcol = gcnew StringCollection();
array<String^>^ tmpstr = gcnew array<String^> {"Third", "Fourth" };
strcol->AddRange(tmpstr);
StringEnumerator ^strenum = strcol->GetEnumerator();
while ( strenum->MoveNext())
{
Console::WriteLine(strenum->Current);
}
}
Related examples in the same category