using System; public class Test { public static void Main() { System.Collections.ArrayList lista1 = new System.Collections.ArrayList(); lista1.Add(13); lista1.Add(113); System.Collections.ArrayList lista2 = new System.Collections.ArrayList(); lista2.Add("Blog xCSw"); lista2.Add("Blog AndroiDEV"); int numeroEntero = lista1[0]; Console.WriteLine(numeroEntero.ToString()); string cadena = lista2[0]; Console.WriteLine(cadena); } }