CArrayのループ

シンプルにforループ

	for (int i = 0; i < array.GetSize(); i++)
	{
		str = str + array[i] + "\r\n";	
	}