As shown in the code, I have to convert the double value to string in order for the textbox to accept it. Now b = 0.60 but when I run the program the textbox only shows it as 0.6 not 0.60.
How can I make the textbox show the double value as it is? I mean to show the 2 numbers after the DOT.
private void button1_Click(object sender, EventArgs e)
{
double b = 0.60;
textBox1.Text = b.ToString();
}