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

this() public method

public this ( ushort i ) : byte
i ushort
return byte
        public byte this[ushort i]
        {
            get {
                if (i >= m_Size) {
                    throw new SegFaultException(SegmentType, i);
                }
                return MemoryReference[i + Base];
            }
            set {
                if (i >= m_Size) {
                    throw new SegFaultException(SegmentType, i);
                }
                MemoryReference[i + Base] = value;
            }
        }