Is it possible to detect a Nullable type (cast into an object) when it is null?
Since Nullable<T> is really a struct I think it should be possible.
double? d = null;
var s = GetValue(d); //I want this to return "0" rather than ""
public string GetValue(object o)
{
if(o is double? && !((double?)o).HasValue) //Not working with null
return "0";
if(o == null)
return "";
return o.ToString();
}
Nullable<double>, then the routine will either receive a null object reference (if the variable was null), or a reference to aSystem.Double(if the variable was not null). It will not box an instance ofNullable<System.Double>. – supercat Feb 6 '12 at 18:45