如何处理无效的强制转换异常错误

如何处理无效的强制转换异常错误

本文介绍了如何处理无效的强制转换异常错误的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我收到以下错误 [无法将'System.DBNull'类型的对象强制转换为'System.String'。] 此行doc.Dr_Remarks =(string)Reader [ Dr_Remarks] ;.



我的datareader从DB中带来空值。所以请帮我如何在c#中的这一行处理异常。

解决方案



I am getting the following error [Unable to cast object of type 'System.DBNull' to type 'System.String'.] at this line doctor.Dr_Remarks = (string)Reader["Dr_Remarks"];.

My datareader is bringing null value from DB . so pls help me how to handle exception at this line in c#.

解决方案



这篇关于如何处理无效的强制转换异常错误的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

08-05 21:22