Answers for "C# decimal with two places store as string with two places"

C#
0

C# decimal with two places store as string with two places

public static string DoFormat( double myNumber )
{
    var s = string.Format("{0:0.00}", myNumber);

    return s;
}
Posted by: Guest on January-27-2021

Code answers related to "C# decimal with two places store as string with two places"

C# Answers by Framework

Browse Popular Code Answers by Language