[問題] 請問dr[i].GetType() 的if怎麼寫?

作者: ChenRobert (羅伯陳)   2022-07-23 18:23:29
if (dr[i].GetType() == System.DateTime)
{
}
我的判斷是只要是DataTime就要獨立抓出來,請問這語法要怎麼寫?
寫System.DateTime 會 compile error
作者: sating00 (sating00)   2022-07-23 20:54:00
typeof()
作者: iterator (rotareti)   2022-07-25 09:23:00
用 if (dr[i] is System.DateTime)C# 7 以後,還有 swtich (dr[i]) case DateTime dt1:

Links booklink

Contact Us: admin [ a t ] ucptt.com