I have a constructor I am trying to build with the header public KsuPoint(double x0, double y0)
now i also have properties in the class as shown below
private double x;
public double X
{
get { return x; }
}
private double y;
public double Y
{
get { return y; }
}
This constructor is suppose to initialize the properties X and Y ...
is this correct? or am i off?
public KsuPoint(double x0, double y0)
{
new KsuPoint(x0, y0);
}