Ypsilon.Emulation.Processor.MemoryChunk.this C# (CSharp) Method

this() public method

public this ( uint address ) : byte
address uint
return byte
        public byte this[uint address]
        {
            get {
                if (address >= m_Memory.Length)
                    return 0;
                return m_Memory[address];
            }

            set {
                if (ReadOnly)
                    return;
                if (address < m_Memory.Length)
                    m_Memory[address] = value;
            }
        }