is it totally safe to handle without casting :
or is it safer to use :
both EditTexts are numeric.
same Q for the opposite direction (from int to EditText.Text with/without casting to string)
Thank you
B4X:
Dim i as int=EditText1.Text+EditText2.Text
or is it safer to use :
B4X:
Dim i as int=EditText1.Text.AS(int)+EditText2.Text.AS(int)
both EditTexts are numeric.
same Q for the opposite direction (from int to EditText.Text with/without casting to string)
Thank you