判斷一個類型是否爲可空類型 System Nullable

bool IsNullableType(Type theType)  
{  
    return (theType.IsGenericType && theType.  
      GetGenericTypeDefinition().Equals  
      (typeof(Nullable<>)));  
}  

it

相關文章
相關標籤/搜索