Back to slide -- Keyboard shortcut: 'u'  previous -- Keyboard shortcut: 'p'  next -- Keyboard shortcut: 'n'          playing-card/playing-card-static-constructor/client.cs - A client of class PlayingCard.Lecture 3 - slide 29 : 29
Program 2

using System;

class Client{

  public static void Main(){
    foreach (Card c in Card.allSpades)
      Console.WriteLine(c);
  }

}