From int to double | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
0

From int to double

Hi, here is the problem of convert.ToInt32 (textbox1.text), this is an integer format, and if I want to type 3.5 for example an error, how to do it?

1st Mar 2020, 10:20 AM
olmtvck
olmtvck - avatar
5 Answers
+ 1
`double` type also has `TryParse` method you can use to safely convert a given string to `double` double num; bool res = double.TryParse("123.45", out num); When <res> equals to true it means the string can be and had been converted to double, the conversion result is saved into variable <num>.
1st Mar 2020, 10:35 AM
Ipang
+ 1
Jayakrishna For example, I have textbox1 with an introduction to it of 1.75 and textbox2 with a number of 1.75, I want label1 to output their sum.
1st Mar 2020, 10:46 AM
olmtvck
olmtvck - avatar
+ 1
Clearly you could use Exeption Handling, more you find here: https://www.sololearn.com/learn/CSharp/2690/
1st Mar 2020, 10:48 AM
JaScript
JaScript - avatar
+ 1
What difficulty you are facing in sum,? As Ipang suggested, use TryParse, take 2 numbers like one for textbox1, and another for box2. double num_1, num_2; Assign values.. And display in label1=> as num_1+num_2;
1st Mar 2020, 10:55 AM
Jayakrishna 🇮🇳
0
int j=3; double i=j; Simply it possible, it is implicit convertion; since it lower type to double. No loss of data. But in higher to lower type convertion, there is need of type convertion.. Like, double i=3.5; int k=(int)i; // k=3
1st Mar 2020, 10:33 AM
Jayakrishna 🇮🇳