CSPspEmu.Core.Cpu.CpuThreadState.FprListInteger.this C# (CSharp) Method

this() public method

public this ( int Index ) : int
Index int
return int
            public int this[int Index]
            {
                get { fixed (float* PTR = &CpuThreadState.FPR0) return ((int*)PTR)[Index]; }
                set { fixed (float* PTR = &CpuThreadState.FPR0) ((int*)PTR)[Index] = value; }
            }
CpuThreadState.FprListInteger