Last week a coworker sent me an interesting piece of code: const string a = ""; const string b = ""; const string c = "hello"; const string d = "hello"; Console.WriteLine(ReferenceEquals(string.Empty, string.Empty) ? "Not so surprising…" : "Oh, the humanity!"); Console.WriteLine(ReferenceEquals(a, string.Empty) ? "But I thought string was [...]