In the code I found the following construction
var nfi = (NumberFormatInfo)CultureInfo.CurrentCulture.NumberFormat.Clone(); nfi.NumberGroupSeparator = " "; item.ToString("#,0.00", nfi);
But nowhere can I find it as "decrypted" the format "#,0.00"
(experimentally, of course, established that it formats a number into a string with two decimal places or two zeros if the number is integer). But I would like to see a complete list of decryption rules.