C64Lib.Memory.RamBytePointer.this C# (CSharp) Method

this() public method

public this ( int offset ) : byte
offset int
return byte
        public byte this[int offset]
        {
            get { return _memory[_address + offset]; }
            set { _memory[_address + offset] = value; }
        }