CSPspEmu.Core.Cpu.InstructionStreamReader.this C# (CSharp) Method

this() public method

public this ( uint Index ) : Instruction
Index uint
return Instruction
        public Instruction this[uint Index]
        {
            get
            {
                var Instruction = default(Instruction);
                Stream.Position = Index;
                Instruction.Value = BinaryReader.ReadUInt32();
                return Instruction;
            }
            set
            {
                Stream.Position = Index;
                BinaryWriter.Write((uint)value.Value);
            }
        }
InstructionStreamReader