As a followup to my system.nullable vs. tryparse entry, I’ve decided to publish the nullable parser code that I use in the data access system of .netSavant. Download the C# file (in txt format) … more →
Please stop, you're hurting my brains!xosfaere wrote 1 month ago: Let’s fix C.A.R. Hoare’s billion dollar mistake for C#: Null-pointer dereferences. … more →
mazzoo wrote 2 months ago: Here is an example on how you identify a Nullable enum and convert an Nullable<int> (int? ) to … more →
harisahmed wrote 2 months ago: Value types have an implicit constructor, so declaring them instantiates the type automatically; you … more →
aratkilo wrote 5 months ago: If you are really frustrated in trying to bind a Nullable type to a control then you will be happy. … more →
tvbeckho wrote 10 months ago: One of the things I encounter a lot in a Siebel application I support, is the fact that there are lo … more →
Johan Leino wrote 10 months ago: The other day I used the IsDateEmpty property of a DateTimeControl and I wanted to assign the approp … more →
Peet Brits wrote 1 year ago: LINQ is one of the great new technologies in .NET. As opposed to the frustrations of raw text in XML … more →
aikea wrote 1 year ago: Nullable types are basicly the value types which are enabled to contain a null value. Two ways to de … more →
bradymoritz wrote 1 year ago: This is sorta old news, but my last Asp.net gripe put me in the mood to continue with another longer … more →
Joshua Gall wrote 1 year ago: As a followup to my system.nullable vs. tryparse entry, I’ve decided to publish the nullable p … more →
Joshua Gall wrote 1 year ago: I’ve been working on some code tonight and needed to use the trusty struct.TryParse methods av … more →
fookean wrote 2 years ago: If you ever want to able to determine whether a value has been assigned. It is good to declare Nulla … more →