Convert a variable String in to int

hi

i want to know how convert a variable genericvalue in a string and int ?

image

The best thing is not to use genericvalue variables, but you can use:
Convert.ToString(variable) or Convert.ToInt32(variable)

1 Like