Friday, July 10, 2009

C# Nullable Structs

You can make a struct type nullable by adding a ? at the end of the type.

(e.g
Point? myNullablePoint = ...
int? myNullableInt = ..
)

and so on..

No comments:

Post a Comment