Some Thoughts About Null References

Guidelines

Appendix

// This pattern can be used to support optional values that have reasonable semantics.                           
// Even so, you probably shouldn't use this pattern if a more idiomatic solution is available.                   
public abstract class Nullable<T> {                                                                        
    public static Nullable<T> FromSomething(T value) { return new Something(value); }                      
    public static Nullable<T> FromNothing() { return new Nothing(); }                                      
    public abstract TResult Match<TResult>(Func<T, TResult> something, Func<TResult> nothing); 
                                                                                                                 
    private Nullable() { }                                                                                       
    private class Something : Nullable<T> { ... }                                                          
    private class Nothing : Nullable<T> { ... }                                                            
}