using System.Collections;
private string theLastName;
private string thePassword;
public void setLastName(string l){
public string getLastName(){
public static void Main()
Person objPerson = new Person();
ArrayList myArrayList = new ArrayList();
Console.WriteLine("Hello World");
myArrayList.Add("Texto1");
myArrayList.Add("Texto2");
myArrayList.Add("Texto3");
foreach (string phrase in myArrayList)
Console.WriteLine("Posición {0}: {1}", i+1,myArrayList[i]);