0
我在想如果有一個系統函數會告訴我,如果一個類型表示一個數值(對於一個自定義TypeConverter)。確定檢查每種類型的已知類型是否正常,但我不太喜歡它。是否代表數值C#
if (destinationType == typeof(int))
return true;
if (destinationType == typeof(Int16))
return true;
if (destinationType == typeof(Int32))
return true
...
if (destinationType == typeof(float))
return true;
...
謝謝。
這是一個重複的問題,我絕對記得被問及回答,但似乎無法找到它。 – Noldorin 2009-09-22 01:37:46
它被問到很多...這將是一個ncie功能,不存在 – 2009-09-22 01:38:46
http://stackoverflow.com/questions/437882/c-equivalent-of-nan-or-isnumeric – xcud 2009-09-22 01:48:55