summaryrefslogtreecommitdiff
path: root/BCT/Test/BCTClassTest/BCTClassTest/Program.cs
diff options
context:
space:
mode:
Diffstat (limited to 'BCT/Test/BCTClassTest/BCTClassTest/Program.cs')
-rw-r--r--BCT/Test/BCTClassTest/BCTClassTest/Program.cs51
1 files changed, 0 insertions, 51 deletions
diff --git a/BCT/Test/BCTClassTest/BCTClassTest/Program.cs b/BCT/Test/BCTClassTest/BCTClassTest/Program.cs
deleted file mode 100644
index 7b5d8799..00000000
--- a/BCT/Test/BCTClassTest/BCTClassTest/Program.cs
+++ /dev/null
@@ -1,51 +0,0 @@
-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)
- {
- }
- }
-}