Guest User

Untitled

a guest
Jan 16th, 2019
76
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.26 KB | None | 0 0
  1. public interface IBall
  2. {
  3. }
  4. public class BilliardBall : IBall
  5. {
  6. }
  7. public abstract class Sport
  8. {
  9. protected abstract IBall Ball { get; }
  10.  
  11. }
  12. public class Billiards : Sport
  13. {
  14. protected override IBall Ball
  15. {
  16. get { return new BilliardBall(); }
  17. }
  18. }
Add Comment
Please, Sign In to add comment