What is the difference (in bref) between (.NET)
myString == otherString
and
myString.CompareTo(otherString) == 0
|
What is the difference (in bref) between (.NET)
and
|
|||
|
There's no difference, except when myString is Only use |
||||
|
|
Assuming you meant == and not = CompareTo implements the IComparable interface. It returns an integer. |
|||||||
|
|
To quote the documentation:
Emphasis added - note that it does not say that the two objects are equal. |
|||
|
|
|
From here:
The |
|||||||
|
|
The myString.CompareTo(otherString) method main purpose is to be used with sorting or alphabetizing operations. It should not be used when the main purpose is to check the equality of strings. To determine whether two strings are equivalent, call the Equals method." It's better to use .Equals instead of .CompareTo when looking solely for equality. since I also think it is faster for the compiler than the == operation. |
|||
|
|
==... :/ – serhio Feb 17 '12 at 15:10