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
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