Month

Your search for 01/2007 returned 2 results.


A Few Things About Array Interfaces

One of the fun things about working with a big framework like .NET is that even after a few years of immersion in the technology, there are still fresh lessons to learn. So today, in the "I did NOT know that" department, I present a few interesting things about the humble array. The code snippets shown are part of a complete sample program that you can download ...

Read More


Generics in ObjectListView

Note: You can download the complete implementation here. My original implementation of ObjectListView wraps a list of arbitrary objects. It exposes these list items as type "object", which means that you have to cast the returned items to your list item type. For example: List list = new List(); ObjectListView view = new ObjectListView(list); list.Ad...

Read More