class Rectangle:Shape { double height; double width; public Rectangle(double height,double width) { this.height=height; this.width=width; } }
class Rectangle:Shape { double rec_Height; double rec_Width; public Rectangle(double height,double width) { rec_Height=height; rec_Width=width; } }
Quote:The this keyword refers to the current instance of the class.
var
This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)