using System.Collections;
Örnek:
using System.Collections;
namespace WindowsFormsApplication1
{
public partial class Form1 : Form
{
public Form1()
{
InitializeComponent();
}
ArrayList liste = new ArrayList();
private void Form1_Load(object sender, EventArgs e)
{
liste.Add("wmaraci");
}
}
}