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

this() public method

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

Same methods

CpuThreadState.VfprList::this ( int Matrix, int Column, int Row ) : float
CpuThreadState.VfprList::this ( int Size, string Name ) : float[]
CpuThreadState.VfprList::this ( string NameWithSufix ) : float[]
CpuThreadState.VfprList