Tuesday 30 April 2013

Convert string into double values


string qw1 = txtWeight.Text.ToString().Trim();
                    if (qw1 != "")
                    {
                       double qw = Convert.ToDouble(qw1);
                    }

No comments:

Post a Comment