10 references to BigNumber
System.Numerics (10)
System\Numerics\BigInteger.cs (10)
374return BigNumber.FormatBigInteger(this, null, NumberFormatInfo.CurrentInfo); 378return BigNumber.FormatBigInteger(this, null, NumberFormatInfo.GetInstance(provider)); 382return BigNumber.FormatBigInteger(this, format, NumberFormatInfo.CurrentInfo); 386return BigNumber.FormatBigInteger(this, format, NumberFormatInfo.GetInstance(provider)); 810return BigNumber.ParseBigInteger(value, NumberStyles.Integer, NumberFormatInfo.CurrentInfo); 814return BigNumber.ParseBigInteger(value, style, NumberFormatInfo.CurrentInfo); 818return BigNumber.ParseBigInteger(value, NumberStyles.Integer, NumberFormatInfo.GetInstance(provider)); 822return BigNumber.ParseBigInteger(value, style, NumberFormatInfo.GetInstance(provider)); 826return BigNumber.TryParseBigInteger(value, NumberStyles.Integer, NumberFormatInfo.CurrentInfo, out result); 830return BigNumber.TryParseBigInteger(value, style, NumberFormatInfo.GetInstance(provider), out result);