Category Archives: C#

TechEd 2008

O TechEd está chegando aí (14 a 16/10) e contará com a presença de ninguém mais ninguém menos que Steve (Developers! Developers! Developers!) Balmer. Os preparativos já estão a toda. Este ano estarei ministrando duas palestras: DEV301 – 300- 14/10/2008 … Continue reading

Posted in C# | Leave a comment

Object creation with generics

Last week I was reviewing some code when I came across something that looked like. class TypeTranslator<TOrigin, TDestination> {    public TDestination Convert(TOrigin value) {        Type typeOfTo = typeof(TDestination);        TDestination to = (TDestination)typeOfTo.InvokeMember(null, BindingFlags.CreateInstance, null, null, null, CultureInfo.CurrentCulture);        // goes on … Continue reading

Posted in C# | Leave a comment

Yielding surprises

Last month I was working on a bug in a service I developed a couple of months ago. The service consists of a Windows Service that coordinates an unspecified amount of secondary Windows Services that are in charge of collecting … Continue reading

Posted in C# | Leave a comment

Uruguayans @ Redmond

I still haven’t found a good place to host the interview I did with Marcelo Guerra and Veronica Giaudrone  back in May. Both are Uruguayan SDETs working at Microsoft in Redmond While a definite place isn’t setup, you can download … Continue reading

Posted in C# | Leave a comment

MVP C#

As of yesterday, I’m a C# MVP (Yeeesss!!!!) and I’m not fooling! Thanks to everyone who helped me along the way.  

Posted in C# | 5 Comments