I came upon a questing at StackOverflow: The system I work on here was written before .net 2.0 and didn't have the benefit of generics. It was eventually updated to 2.0, but none of the code was refactored due to time constraints. There are a number of places where the code uses ArraysLists etc. that … Continue reading Why should I use List and not ArrayList
Tag: C#
SharpPDB – .NET Class that reads and writes palm OS files
I'm the proud owner of a Palm Tungsten E2 device. It's amazing how this old device is still much better then newer mobile windows devices. It has great battery life, quick response time and easy to use PIM. And it seems I'm not only one that thinks so - you can read about it download … Continue reading SharpPDB – .NET Class that reads and writes palm OS files
Using Managed Thread Local Storage
At work we needed to keep information about each thread. Due to application's nature we couldn't know when a thread would call our code and to make things more interesting we couldn't even rely on the thread id for unique identification. Because of those restrains an external data structure was out of the question and … Continue reading Using Managed Thread Local Storage