Posted By

beresovskiy on 06/05/09


Tagged

format output strings double


Versions (?)



Who likes this?

1 person has marked this snippet as a favorite

umang_nine


C# decimal format


Published in: C# 






Expand | Embed | Plain Text
  1. public static void Main() {
  2. double num = 64354.2345;
  3.  
  4. Console.WriteLine("Default format: " + num);
  5.  
  6. Console.WriteLine("Use scientific notation: " +
  7. "{0:#.###e+00}", num);
  8.  
  9. }

Report this snippet 

You need to login to post a comment.