The VB.NET String Compare function is use to compare two String Objects.
System.String.Compare(String str1,String str2, Boolean ) As Integer
It returns an Integer indication lexical relationship between the two comprehends
Parameters:
String str1 : Parameter String
String str2 : Parameter String
Boolean True/False Indication to check the String with case sensitive or without case sensitive
Returns:
Integer : returns less than zero, zero or greater than zero.
Less than zero : str1 is less than str2
zero : str1 is equal to str2
Greater than zero : str1 is grater than str2
VB.NET SourceCode
When you run this program first u get -1 in message box and then 0