Esempio n. 1
0
 public Point(PointColorEnum ptColor)
 {
     Color = ptColor;
 }
Esempio n. 2
0
 public Point(int xVal, int yVal)
 {
     X     = xVal;
     Y     = yVal;
     Color = PointColorEnum.Gold;
 }