예제 #1
0
        public override void AddLogic()
        {
            Studentjawed s1 = new Studentjawed();
            Studentjawed s2 = new Studentjawed(80);
            Studentjawed s3 = new Studentjawed("Pieter", 80, 80);

            System.Console.WriteLine(s1.studentName, s3.subjectOne);
        }
예제 #2
0
        public override void AddMainLogic()
        {
            Studentjawed sj = new Studentjawed();

            sj.AddLogic();
            A   a = new A();
            var x = ((int)3.9);

            System.Console.WriteLine(x);
            a.AddLogic();
        }