Sreejumon on July 22nd, 2005

She is waiting for August 3rd 2005. Till yesterday she didnt have an official name. Parents and her relatives started calling her “longhorn”, some time back (before her birth). She is cute, beautiful.. Much better than her elder sisters and brothers. We didnt care her sibling’s petname. But now itself her petname spread across all [...]

Continue reading about Vista – Her name in school register

Sreejumon on July 20th, 2005

Myself and Nasha(MVP) had hosted an MSDN web chat on Indigo. You can find the chat transcript here.

Continue reading about MSDN Chat on Indigo

Sreejumon on July 6th, 2005

I hope you are aware of some in-built design patterns in C#.   Here is some code snippets.       ArrayList arrayList = new ArrayList();       int []array = {1,2,3,5};       foreach(int i in array)       {             Console.WriteLine(i);             arrayList.Add(i);   // Fill ArrayList       }       foreach(int i in arrayList)       {       [...]

Continue reading about Iterator Pattern in C# – foreach statement