Class C# Tutorial

using System;
class MyObject
{
    int x;
    int y;
    public MyObject(int x, int y)
    {
        this.x = x;
        this.y = y;
    }
}