source code bean

Archive for December, 2011

07 Dec, 2011

String interning in C#

Posted by: Peter In: .NET|C#

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 [...]


Adwords

About

Welcome to source code bean! On this site I post stuff that I encounter in my job and spare time. The content is mostly related to .NET development, but my interest in techonology is very broad, so often you will find posts on totally different subjects!