How to write line and see data in System.Data.Datatable

I am working on someone else code and there is a error.
While debugging i want to see the current value from the table.

He/she used create data table activity to create data table.

in columns
Save.values(ofSystem.Data.DataTable)(“ListofFiles”).Columns.Case(Of.System.Data.DataColumn)().select.ToArray()

In Datatable
Save.Values(Of.System.Data.DataTable)(“NewListofFile”)

Now how to I use write line or whatever to see the values in the table.
And also why to create such a complicated data table?

@sunilkanth

Ypu can check the values from the locals panel for the corresponding datatable
Mhe/she must be a c# coder so used like this

These are basically trying to read some columns into an array

When running in debug mode you can open lcoals panel and then check the values present in corresponding varibles

Cheers

Use Immediate or locals panel for the same while running your process in debug mode.