1 // Compiler options: -r:test-415-lib.dll
4 public class MyTestExtended
: MyTestAbstract
6 public MyTestExtended() : base()
10 protected override string GetName() { return "foo"; }
11 public static void Main(string[] args
)
13 Console
.WriteLine("Calling PrintName");
14 MyTestExtended test
= new MyTestExtended();
16 Console
.WriteLine("Out of PrintName");