Eresor

Untitled

Oct 8th, 2019
71
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 0.17 KB | None | 0 0
  1. class Rectangle
  2. {
  3.     public float width;
  4.     public float height;
  5. }
  6.  
  7. class ShapeTools
  8. {
  9.     public float Area(Rectangle shape)
  10.     {
  11.         return shape.width * shape.height;
  12.     }
  13. }
Add Comment
Please, Sign In to add comment