Welcome to collectivesolver - Programming & Software Q&A with code examples. A website with trusted programming answers. All programs are tested and work.

Contact: aviboots(AT)netvision.net.il

Buy a domain name - Register cheap domain names from $0.99 - Namecheap

Scalable Hosting That Grows With You

Secure & Reliable Web Hosting, Free Domain, Free SSL, 1-Click WordPress Install, Expert 24/7 Support

Semrush - keyword research tool

Boost your online presence with premium web hosting and servers

Disclosure: My content contains affiliate links.

39,888 questions

51,815 answers

573 users

How to format decimal places in C#

4 Answers

0 votes
using System;

class Program
{
    static void Main() {
        Console.WriteLine(String.Format("{0:0.00}", 1238.4567));
        
        Console.WriteLine(String.Format("{0:0.00}", 1238.5));
        
        Console.WriteLine(String.Format("{0:0.00}", 1238.0));
    }
}




/*
run:

1238.46
1238.50
1238.00

*/

 



answered Apr 5, 2022 by avibootz
0 votes
using System;

class Program
{
    static void Main() {
        Console.WriteLine(String.Format("{0:0.##}", 1238.4567));
        
        Console.WriteLine(String.Format("{0:0.##}", 1238.5));
        
        Console.WriteLine(String.Format("{0:0.##}", 1238.0));
    }
}




/*
run:

1238.46
1238.5
1238

*/

 



answered Apr 5, 2022 by avibootz
0 votes
using System;

class Program
{
    static void Main() {
        Console.WriteLine(String.Format("{0:00.0}", 1238.4567));
        Console.WriteLine(String.Format("{0:00.0}", 123.4567));
        
        Console.WriteLine(String.Format("{0:00.0}", 1247.5));
        Console.WriteLine(String.Format("{0:00.0}", 1247.0));
        
        Console.WriteLine(String.Format("{0:00.0}", 3.14159));
        Console.WriteLine(String.Format("{0:00.0}", -3.14159));
    }
}




/*
run:

1238.5
123.5
1247.5
1247.0
03.1
-03.1

*/

 



answered Apr 5, 2022 by avibootz
0 votes
using System;

class Program
{
    static void Main() {
        Console.WriteLine(String.Format("{0:0,0.0}", 1238.4567));
        
        Console.WriteLine(String.Format("{0:0,0.0}", 12390.4467));
        
        Console.WriteLine(String.Format("{0:0,0.0}", 123907.4567));
        
        Console.WriteLine(String.Format("{0:0,0.0}", 1247.4));
        
        Console.WriteLine(String.Format("{0:0,0.0}", 1247.0));
    }
}




/*
run:

1,238.5
12,390.4
123,907.5
1,247.4
1,247.0

*/

 



answered Apr 5, 2022 by avibootz

Related questions

1 answer 153 views
1 answer 111 views
2 answers 149 views
2 answers 142 views
2 answers 141 views
...