How to convert expressions to double in C#

1 Answer

0 votes
using System;

public static class Program
{
    public static void Main()
    {
        decimal dec = 23.837M;

        double dbl = Convert.ToDouble(dec * 3.14M * 0.005M);

        Console.WriteLine(dbl);
    }
}




/*
run:

0.3742409

*/

 



answered Nov 16, 2021 by avibootz
edited Nov 16, 2021 by avibootz

Related questions

1 answer 220 views
1 answer 171 views
171 views asked Nov 15, 2021 by avibootz
1 answer 175 views
1 answer 198 views
1 answer 102 views
102 views asked Mar 17, 2025 by avibootz
...