show double in textbox csharp

Code Example - show double in textbox csharp

                
                        private void button1_Click(object sender, EventArgs e)
{
    double b = 0.60;
    textBox1.Text = b.ToString("0.00");
}