Whenever you concatenate anything with Option Strict on it implicitly calls the ToString method of whatever it is that you're using. The same occurs with Integers:
Code:
Dim strValue As String = 1 'Gives error because of implicit conversion
Dim newStrValue As String = 1 & "" 'Does not give error anymore because of &