摘要:
Format specifierNameDescriptionExamples "C" or "c" Currency Result: A currency value.Supported by: All numeric types.Precision specifier: Number of de 阅读全文
摘要:
double value; value = 123; Console.WriteLine(value.ToString("00000")); Console.WriteLine(String.Format("{0:00000}", value)); // Displays 00123 value = 阅读全文