show double in textbox c# code example
Example: show double in textbox c#
private void button1_Click(object sender, EventArgs e)
{
double b = 0.60;
textBox1.Text = b.ToString("0.00");
}
private void button1_Click(object sender, EventArgs e)
{
double b = 0.60;
textBox1.Text = b.ToString("0.00");
}