View difference between Paste ID: nzbJG1QV and epFm1C1E
SHOW: | | - or go back to the newest paste.
1-
class Polygon  
1+
abstract class Polygon  
2
{    
3
	public double Length { get; protected set; }    
4
	public double Width { get; protected set; } 
5
	abstract public double GetArea();
6
}