标签: c# asp.net mysqldatareader
在处理.Net项目和SqlDataReader时,有人质疑以下两者之间的区别:
SqlDataReader
Convert.ToBoolean(reader["Name"])
并且:
(bool) (reader["Name"])