Mosa.Kernel.x86.ConsoleSession.GetColor C# (CSharp) Method

GetColor() public method

public GetColor ( byte column, byte row ) : byte
column byte
row byte
return byte
        public byte GetColor(byte column, byte row)
        {
            uint address = (row * Columns + column);
            return textcolor[address];
        }