I\'m just getting started using ADO.NET and DataSets and DataTables. One problem I\'m having is it seems pretty hard to tell what values are in the data table when trying to
I added two lines into my app inside a class named after the outermost class:
public MyClass()
{
// The following (2) lines are used for testing only. Remove comments to debug.
System.Diagnostics.Debugger.Launch();
System.Diagnostics.Debugger.Break();
}
This should stop the app and bring it up in debug mode. Then you can step through it and look at the values in your objects as you hover over them.