Loop through the rows of a particular DataTable

前端 未结 4 1655
轮回少年
轮回少年 2021-02-01 03:06

IDE : VS 2008, Platform : .NET 3.5,

Hi,

Here is my DataTable columns :

ID Note Detail

I want to write sth like this :

//below cod         


        
4条回答
  •  南方客
    南方客 (楼主)
    2021-02-01 03:37

    Here's the best way I found:

        For Each row As DataRow In your_table.Rows
            For Each cell As String In row.ItemArray
                'do what you want!
            Next
        Next
    

提交回复
热议问题