コード例 #1
0
        static void Main(string[] args)
        {
            Terning t = new Terning();

            t.Skriv();
            t.Ryst();
            t.Skriv();
            t.Værdi = 7;
            t.Ryst();
            t.Skriv();
            t = new Terning();
            t.Skriv();
            t = new Terning();
            t.Skriv();
            // Hold console åben ved debug
            if (System.Diagnostics.Debugger.IsAttached)
            {
                Console.Write("Press any key to continue . . . ");
                Console.ReadKey();
            }
        }
コード例 #2
0
        static void Main(string[] args)
        {
            Terning t = new Terning();

            t.Skriv();
            t.Ryst();
            t.Skriv();

            LudoTerning l = new LudoTerning();

            l.Skriv();
            Console.WriteLine(l.ErGlobus());
            Console.WriteLine(l.ErStjerne());

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