Object Serialization is an interesting subject as so many developers have never had to deal with it. In very basic terms, serialization is simply converting an object to a different format. We know that an object is an instance of a class and nearly always it is stored in memory (invisible to most developers). We get into… [Read More]
Compare Date Values
I see a lot of code that requires one to compare two date, date and time, or time only values. I think there may be as many ways to skin this cat as there are developers given the number of examples I’ve seen. This I know, the proper way to compare date (or datetime) data… [Read More]