CSPspEmu.Core.Cpu.InstructionArrayReader.this C# (CSharp) Метод

this() публичный Метод

public this ( uint Index ) : Instruction
Index uint
Результат Instruction
        public Instruction this[uint Index]
        {
            get
            {
                return this.Instructions[(int)(Index / 4)];
            }
            set
            {
                this.Instructions[(int)(Index / 4)] = value;
            }
        }
InstructionArrayReader