CSPspEmu.Core.Cpu.VFpu.VfpuConstants.GetConstantValueByIndex C# (CSharp) Method

GetConstantValueByIndex() public static method

public static GetConstantValueByIndex ( int Index ) : Info
Index int
return Info
        public static Info GetConstantValueByIndex(int Index)
        {
            if (Index < 0 || Index >= Constants.Length) throw(new InvalidOperationException(String.Format("Invalid constant index '{0}'", Index)));
            return Constants[Index];
        }