Advertisement
wingman007

C#_OOP_2a_Figure.cs

Mar 22nd, 2014
283
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 0.51 KB | None | 0 0
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5.  
  6. namespace OOPGeometry2
  7. {
  8.     abstract class Figure : SurfaceCalculatable
  9.     {
  10.         private string figureType;
  11.  
  12.         public Figure(string figureType)
  13.         {
  14.             this.figureType = figureType;
  15.         }
  16.  
  17.         public virtual double CalculateSurface()
  18.         {
  19.             return 0;
  20.         }
  21.  
  22.         public string GetFigureType()
  23.         {
  24.             return figureType;
  25.         }
  26.     }
  27. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement