#include "stdafx.h"using namespace System;int main(){ array^ string_array = gcnew array(2) { "first", "second" } ; for (int i = 0; i < string_array->Length; i++) { Console::WriteLine( string_array[i] ); }}