Rozwiązanie: stworzenie klasy reprezentującej punkt.
namespace ConsoleApplicationl
class Program
static void Main(string[] args)
// tworzenie punktu Punkt pl = new Punkt();
pl.x = 3; '—Tworzenie obiektu klasy Punkt. 1
pl.y = 2;
// wypisanie informacji
Console.WriteLine("Punkt ({0}, {1})", pl.x, pl.y); Console.ReadKey();
class Punkt
{
public int x, y; [ \
} Definicja klasy Punkt.