|
Listing 12-5 extracted from chapter
Inheritance, polymorphism and abstraction
Listing 12-4< > Listing 12-6
This listing can be compiled with the command line: csc.exe /target:library Example_12_5.cs Errors: 0 Warnings: 0
Example_12_5.cs
abstract class A { public abstract void Foo();}
abstract class B : A { public abstract override void Foo();}
class C : B { public override void Foo() { /*...*/ } }
Copyright Patrick Smacchia 2006 2007
|