using System.Collections;
public static void Main()
var list = new ArrayList();
foreach(var shapeType in list)
switch(shapeType.ToString())
Console.WriteLine("Shape has no sides");
Console.WriteLine("Shape has 3 sides");
Console.WriteLine("Shape has 4 sides");
Console.WriteLine("SUnable to determine the shape sides");