Created
February 9, 2017 22:29
-
-
Save schatekar/71c621d3aa7d11aaec5b8f2b88350c6f to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
public abstract class Shape | |
{ | |
void Draw(); | |
} | |
public class Rectangle : Shape | |
{ | |
public void Draw() | |
{ | |
//Draw a rectangle here | |
} | |
} | |
public class Circle : Shape | |
{ | |
public void Draw() | |
{ | |
//Draw a circle here | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment