Please see the code below:
Dim str1 As String="Test"
Dim int1 As Integer = 1
Dim str2 = str1 & int1
Should int1 be casted into a string before it is concatenated or does it make no difference?
I have recently turned OPTION STRICT ON in a VB.NET app