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

问题描述

Dim amountorhour As String = record("amountorhours").ToString

If amountorhour.Substring(0, 1) = "A" Then
    amount = amountorhour.Substring(1, amountorhour.Length)
    HrsWorked = 0
Else
    HrsWorked = amountorhour.Substring(1, amountorhour.Length)
    amount = 0
End If







c有什么问题吗颂。谢谢




Is there anything wrong with code. Thanks

推荐答案


这篇关于如何处理System.NullReference异常的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

10-22 17:42