Definition at line 327 of file BigNumber.cs.
328 {
329 digits = -1;
331 {
332 return 'R';
333 }
334 int num = 0;
336 if ((c >= 'A' && c <= 'Z') || (c >= 'a' && c <= 'z'))
337 {
338 num++;
339 int num2 = -1;
341 {
342 num2 =
format[num++] - 48;
344 {
345 int num3 = num2 * 10 + (
format[num++] - 48);
346 if (num3 < num2)
347 {
349 }
350 num2 = num3;
351 }
352 }
354 {
355 digits = num2;
356 return c;
357 }
358 }
359 return '\0';
360 }
static string Argument_BadFormatSpecifier
References System.SR.Argument_BadFormatSpecifier, and System.format.
Referenced by System.Numerics.BigNumber.FormatBigInteger().