私は私を狂わせている問題を抱えています、そしてそれが私が愚かであるだけではないかどうかはわかりません
ブール列を追加するデータテーブルがあります
ds.Tables(0).Columns.Add(New DataColumn("Select", System.Type.GetType("System.Boolean")))
ds.Tables(0).Columns("Select").ReadOnly = False
ds.Tables(0).Columns("Select").DefaultValue = False
ds.Tables(0).Columns("Select").SetOrdinal(0)
次に、それを繰り返し処理して、列に真の値ビットがあるかどうかを確認します。式のConvert.ToBoolean部分で「タイプ'ブール値'のパブリックメンバー'値'が見つかりません」というエラーが発生します。
For Each dr As DataRow In Categories.Tables(0).Rows
If dr("Select").value IsNot Nothing AndAlso (Not IsDBNull(dr("Select").value)) AndAlso Convert.ToBoolean(dr("Select")) = True Then
'Do Something
End If
Next