In some languages (e.g. C++) you can\'t use operators like == for string comparisons as that would compare the address of the string object, and not the string itself. Howev
This is the implementation of the operator:
public static bool operator == (String a, String b) { return String.Equals(a, b); }
Don't lose any sleep over this.