作者ChenRobert (罗伯陈)
看板C_Sharp
标题[问题] 请问dr[i].GetType() 的if怎麽写?
时间Sat Jul 23 18:23:29 2022
if (dr[i].GetType() == System.DateTime)
{
}
我的判断是只要是DataTime就要独立抓出来,请问这语法要怎麽写?
写System.DateTime 会 compile error
--
※ 发信站: 批踢踢实业坊(ptt.cc), 来自: 125.228.55.124 (台湾)
※ 文章网址: https://webptt.com/cn.aspx?n=bbs/C_Sharp/M.1658571811.A.518.html
1F:→ sating00: typeof() 07/23 20:54
2F:→ iterator: 用 if (dr[i] is System.DateTime) 07/25 09:23
3F:→ iterator: C# 7 以後,还有 swtich (dr[i]) case DateTime dt1: 07/25 09:23