データテーブルを含む変数があり、値が 0 の場合は「いいえ」文字列に変更したいという条件があります。
これが私の元のコードです
dt = BrowseServiceTypeMaster(ServiceTypeName)
lvServiceType.DataSource = dt
For i As Integer = 0 To dt.Rows.Count - 1
If dt(i)("exception").ToString = "0" Then
dt(i)("exception") = "No"
End If
Next
そして、これが私がそれを変更したものです:
For i As Integer = 0 To dt.Rows.Count - 1
If dt(i)("exception").ToString = "0" Then
dt(i)("exception").Fill = "No"
End If
Next
それでもエラーが発生します。誰か助けてもらえますか?