Blackjack.ActionTable.this C# (CSharp) Method

this() public method

public this ( int x, int y ) : ActionTypes
x int
y int
return ActionTypes
        public ActionTypes this[int x, int y]
        {
            get { return Table[x, y]; } set { Table[x, y] = value; }
        }