.net

Dictionary<> fun

Posted on:

Here is a brief trivia. Take a look at this piece of code: Dictionary<Tubo, object> dictionary = new Dictionary<Tubo, object>(); Tubo tubo = new Tubo(); dictionary.Add(tubo, new object()); […]

.net

Comparing strings

Posted on:

Comparing two strings is easy and simple, right? Wrong. Check out this article which deals with string comparison in .net 2.0. As an exercise guess the output of this piece […]