static void Main(string[] args) { point p1 = new point(1, 3, '*'); p1.Draw(); point p2 = new point(4, 5, '#'); p2.Draw(); Console.ReadLine(); }