Collections Visual C++ .NET

#include "stdafx.h"
using namespace System;
int main()
{
   array^ stringArray = gcnew array
       { "one", "two", "three", "four", "five" };
   for each (String^ str in stringArray)
   {
      Console::WriteLine(str);
   }
}