Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
if(oDataTable.Rows[0]["File"] != null) //byte array { }
我表中的文件列似乎为空。但是,当我尝试在代码部分检查它是否为空时,它不会转到其他部分。有人可以告诉我如何解决这个问题吗?
我认为您应该使用Convert.IsDBNull检查 DBNull :
if(!Convert.IsDBNull(oDataTable.Rows[0]["File"])) { }