How can I change values of a datatable (even null/void one) in debugging mode?

We are testing a solution and sometimes we want change values or empty data-tables values to force a particular path in debugging mode.

Do you know how can we achieve it?

@Alberto_Palma
we can use the immediate panel in a lot of cases

1 Like

Thank you, and how it will be to make it null?

dtData = new DataTable() - reinit
dtData = dtData.Clone() - reset keep structure
dtData = nothing

1 Like

Thank you! It works Perfect.

This topic was automatically closed 3 days after the last reply. New replies are no longer allowed.