Ocronet.Dynamic.StdInput.this C# (CSharp) Method

this() public method

Element subscripting.
public this ( int y, int x ) : byte
y int
x int
return byte
        public byte this[int y, int x]
        {
            get { return Get(y, x); }
            set { Put(y, x, value); }
        }