Below two which is the best practise to compare strings...


Code:
     If "A".ToLower = "a" Then
      '....
     End If
    
   If String.Compare("A", "A", True) = 0 Then
       '...
    End If