3
Answers

convert string to float

Photo of Rini

Rini

11y
1.7k
1
how to convert string to float
 
my code is
       float dec2DivId; 
if (ddllist.SelectedIndex == 1)
{
if (TextBox1.Text != string.Empty)
{
dec2DivId = Convert.ToString(TextBox1.Text).ToString();


 

Answers (3)