Format the output of a string
- by prince23
hi
here
string strScore="2"; or
string strScore="2.45656"
now here i am checking the condition if it is
double value = double.Parse(strScore);
strScore = value.ToString("##.##");
2.45656 like this then i am showing the output as
2.45
if the input is
string strScore="2";
then the ouput is shown as "2"
but now i need to show the output has 2.00
how can i format the code like this based on the condition