// Test Dice class. public static void Main() { Dice d = new Dice(); for (int i = 1; i <= 20; i++) { d.Roll(); Console.WriteLine(d.Face1 + " " + d.Face2); } Console.ReadLine(); }