Nothing
For reference types, the equivalent of VB's Nothing is C#'s null. For value types, it's the default value - 0, false, etc.
null
0
false
[Author: Jon Skeet]