i have three double variable a ,b and c
a = 0.000006 b = 6 c = a/b;
so C should be 0.000001
i want to show this value in text bo
Try c.ToString("F6");
c.ToString("F6");
(For a full explanation of numeric formatting, see MSDN)