Monday, May 9, 2016

Standard formats, with their related outputs

Standard formats, with their related outputs

Console.WriteLine("Standard Numeric Format Specifiers");
String s = String.Format("(C) Currency: . . . . . . . . {0:C}\n" +
                                        "(D) Decimal:. . . . . . . . . {0:D}\n" +
                                        "(E) Scientific: . . . . . . . {1:E}\n" +
                                        "(F) Fixed point:. . . . . . . {1:F}\n" +
                                        "(G) General:. . . . . . . . . {0:G}\n" +
                                        " (default):. . . . . . . . {0}    (default = 'G')\n" +
                                        "(N) Number: . . . . . . . . . {0:N}\n" +
                                       "(P) Percent:. . . . . . . . . {1:P}\n" +
                                       "(R) Round-trip: . . . . . . . {1:R}\n" +
                                       "(X) Hexadecimal:. . . . . . . {0:X}\n", - 1234, -1234.565F); Console.WriteLine(s);
Example output (en-us culture):
(C) Currency: . . . . . . . . ($1,234.00)
(D) Decimal:. . . . . . . . . -1234
(E) Scientific: . . . . . . . -1.234565E+003
(F) Fixed point:. . . . . . . -1234.57
(G) General:. . . . . . . . . -1234
    (default):. . . . . . . . -1234 (default = 'G')
(N) Number: . . . . . . . . . -1,234.00
(P) Percent:. . . . . . . . . -123,456.50 %
(R) Round-trip: . . . . . . . -1234.565
(X) Hexadecimal:. . . . . . . FFFFFB2E

https://msdn.microsoft.com/en-us/library/system.string.format%28v=vs.110%29.aspx?f=255&MSPPError=-2147217396




No comments:

Post a Comment

LIveCharts2: Charts for Windows and web

Charts for Windows and web including .Net MAUI  LiveCharts - LiveCharts2 (lvcharts.com)