| 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);
}
}