SQL

SQL Compare 6 beta

Posted on:

Red Gate is preparing SQL Compare 6 product. The interesting thing about this version is that they are getting ready for supporting source control for storing database schemas. […]

.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()); […]