Answer: We use CINT in-built VB.Net functionto convert values into Integer.It works exactly as Convert.ToInt32 function.
int number = Convert.ToInt32("1");
int number = CINT("1");
Both expressions are same.
Asked In: Many Interviews |
Alert Moderator