Archive for October 9th, 2008
Making values nullable
First, a little history lesson.
When .NET was first released, we had value types and object types. The difference between the two is that you do not have to set aside memory for a value type because the memory is placed on the stack. So ints, doubles, and structures are all value types.
However, even though the value type is treated differently, it is still ultimately inherited from the Object type. This is good because it allows us to create a method
Other Related Items:
Eastland Women's C-Sharp BootA causal, outdoor ankle boot with shoe-like comfort Durable leather upper Color-fast breathable lining keeps feet cool and dry Removable insole wit... Read More >
eastland c-sharp leather women's ankle bootsVPDCDIXN685KUTKABQG6
Pro C# 2008 and the .NET 3.5 Platform, Fourth Edition (Windows.Net)The first edition of this book was released at the 2001 Tech Ed conference in Atlanta, Georgia. Since that time, this text has been revised, tweaked, ... Read More >

