static void Main(string[] args) { list l = new list(); l.Push(5); l.Push(0); l.Push(6); l.Push(2); l.Push(11); l.Push(2); l.Push(13); l.Push(5); Console.WriteLine(); l.Output(); l.count(); Console.WriteLine("\n"); l.Del(); l.Output(); }