c#--Formatting Numeric data

Source: Internet
Author: User

If the numeric data requires finer formatting, each placeholder can contain different format characters, and the following table shows the core formatting options.

Here is an example to illustrate.

1 namespaceLearningcsharp2 {3     class Program4     {5         Static voidMain (string[] args)6         {7 FormatNumber ();8 Console.readkey ();9             Ten         } One  A         Static voidFormatNumber () -         { -Console.WriteLine ("The value 99999 in different ways:"); theConsole.WriteLine ("C format: {0:C}",99999); -Console.WriteLine ("D9 format: {0:d9}",99999); -Console.WriteLine ("f format: {0:F3}",99999); -Console.WriteLine ("g format: {0:g}",99999); +  -Console.WriteLine ("N format: {0:n}",99999); +Console.WriteLine ("E format: {0:e}",99999); AConsole.WriteLine ("e format: {0:e}",99999); atConsole.WriteLine ("X format: {0:x}",99999); -Console.WriteLine ("x format: {0:x}",99999); -         } -     } -}

If you want to learn more about formatting the. NET string, you can review the formatting type topic for the. NET Framework documentation.

c#--Formatting Numeric data

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.