using System; namespace Example42 { class Point { private double x; private double y; public Point(double x, double y) { this.x = x; this.y = y; } public override string ToString() { return String.Format("({0:F5},{1:F5})", x, y); } } /// /// Summary description for Class1. /// class Class1 { /// /// The main entry point for the application. /// [STAThread] static void Main(string[] args) { // // TODO: Add code to start application here // } } }