vb.net Try 錯誤導(dǎo)致 For Each 循環(huán)中斷
?
使用 xdocument 里的 xelement 去 循環(huán)填充控件.
for each x in xe.xelements
try?
groupbox1.controls(x.name.tostring).text = x.value.tostring
Catch ex As Exception
debug.print(x.name.tostring)
End Try
next
?
結(jié)果 只要出現(xiàn)錯誤, 就會導(dǎo)致 for each 出現(xiàn)中斷
?
vb.net 竟然 無法完成 on error resume next? 繼續(xù)執(zhí)行
百度了半天 沒有找到方案,后來想了一下? 再加一層try catch?
for each x in xe.xelements
try
try?
groupbox1.controls(x.name.tostring).text = x.value.tostring
Catch ex As Exception
debug.print(x.name.tostring)
End Try
catch ex as exception
end try?
next
?
這 到哪 說理去呀
?
本文摘自 :https://www.cnblogs.com/