using System;
using System.Collections;
namespace ConsoleApplication_C_Sharp
{
class Program
{
static void Main(string[] args)
{
ArrayList alist = new ArrayList();
alist.Add("java");
alist.Add("c#");
alist.Add("c++");
alist.Add("c");
alist.Add("python");
for (int i = 0; i < alist.Count; i++)
{
string s = alist[i] as string;
Console.WriteLine(s);
}
}
}
}
/*
run:
java
c#
c++
c
python
*/