What are the differences between
Dim Str As String = ""
And
Dim Str As String = vbNullString
When should I prefer one instead of the other?
What I mean is:
if I want to clear a string (so to check if it got a value after) what choice is better?