SnakeBattleNet.Core.BattleField.this C# (CSharp) Method

this() public method

public this ( int x, int y ) : Content
x int
y int
return Content
        public Content this[int x, int y]
        {
            get
            {
                try
                {
                    return field[x, y];
                }
                catch
                {
                    return Content.Empty;
                }
            }
            set { field[x, y] = value; }
        }