Is there any difference between & and + operators while concatenating string?
if yes, then what is difference? And if No, then why below code generating exception?
& and + are both concatenation operators but when you specify an integer while using +, vb.net tries to cast "Hello" into integer to do an addition. If you change "Hello" with "123", you will get the result 124.