C64Lib.Memory.RamBytePointer.this C# (CSharp) Méthode

this() public méthode

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