fork download
  1. using System;
  2.  
  3. class SO15262850
  4. {
  5. static void Main()
  6. {
  7. Decimal d = 1234.56M;
  8. string s = string.Format("{0:N1}", (long)d);
  9. Console.WriteLine(s);
  10. }
  11. }
  12.  
Success #stdin #stdout 0.02s 24556KB
stdin
Standard input is empty
stdout
1,234.0