Nullable types:
*
Check if a generic type parameter is a nullable type
public bool IsTypeNullable<T>()
{
return Nullable.GetUnderlyingType( typeof(T) )!=null;
}