using System;
using System.Collections;
namespace ConsoleApplication_C_Sharp
{
static class Program
{
static void Main(string[] args)
{
ArrayList list = new ArrayList();
list.Add("c#");
list.Add("c");
list.Add("c++");
list.Add("java");
string[] array = list.ToArray(typeof(string)) as string[];
foreach (string s in array)
{
Console.WriteLine(s);
}
}
}
}
/*
run:
c#
c
c++
java
*/