Example #1
0
 //default constructor - afvikles automatisk når der lavet en new instans af klassen - har ingen retur værdi og ingen argumenter
 public Bæger()
 {
     for (int i = 0; i < 5; i++)
     {
         terninger[i] = new Terning();
     }
     ryst();
 }
Example #2
0
        static void Main(string[] args)
        {
            Terning t1 = new Terning();

            t1.Skriv();
            t1.Ryst();
            t1.Skriv();

            Terning t2 = new Terning(true);

            t2.Skriv();
            t2.Ryst();
            t2.Skriv();


            // Hold console åben ved debug
            if (System.Diagnostics.Debugger.IsAttached)
            {
                Console.Write("Press any key to continue . . . ");
                Console.ReadKey();
            }
        }