summaryrefslogtreecommitdiff
path: root/BCT/Test/BCTClassTest/BCTClassTest/Program.cs
blob: 7b5d8799d844929b2ca24b35bf29d227de766460 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;

namespace BCTClassTest
{
    abstract class BCTClassTest
    {
        public BCTClassTest()
        {
        }

        public abstract void AbstractMethod();

        public virtual int VirturalMethod(int j)
        {
            return j;
        }

        protected void ProtectedMethod(int j)
        {
            int i = j;
            i++;
        }
    }

    internal class InheritTest : BCTClassTest
    {
        public InheritTest() { }

        public override void AbstractMethod()
        {
            throw new NotImplementedException();
        }

        public override int VirturalMethod(int j)
        {
            ProtectedMethod(j);
            return base.VirturalMethod(j);
        }
    }


    class Program
    {
        static void Main(string[] args)
        {
        }
    }
}