Menu

Tag Archives: Generics

XML Serialization and Nested Generic Types
For some time I have been working on and off on an attempt to create a useful, powerful, and easy to use library to help with serializing and deserializing [...]
System.Threading.ThreadLocal equivalent for .NET 2.0 and 3.5
One of the big reasons I’ve found myself preferring C# Over Java is that C# is about a million times easier to refactor. By this, I mean that often [...]
Snippets.
Naturally, as we write programs we create a small set of useful functions. BASeBlock has been no exception. I’ve created quite a few functions that [...]
A ReferenceCounted List
Here I explore the design and implementation of a Generic class designed to replace variables of it's Generic Type and add capability, while not forcing [...]
Why I use INI Files, and a FormPositionSaver class
In some of my recent posts, I’ve covered the topic of accessing and parsing an INI file for configuration data in a C# Application. Some may wonder [...]
C#- use Generic methods to write Object Graphs to a file
Serialization has always been a thorn in my side. In VB6. in Python, in C#. The biggest annoyance is that most applications consist of somewhat complex [...]