When debugging dataset, if you want to see the storage Information in dataset, you usually need to throw the dataset to a DataGrid and wait until the page is running, which makes debugging very difficult, especially when there are many dataset.
In the past two days, a dswatch is accidentally found in the codeproject, which allows you to conveniently view the current dataset status at the breakpoint.
Dswatch is implemented in the form of vs.net addin. After installation, you can use plug-ins.ProgramManager to set whether to load it. By default, it is not loaded. to use it, you only need to select the name of the dataset to be debugged in debug mode, and then right-click it, you can select the dswatch option in the pop-up menu.
Dswatch
Source code: http://www.codeproject.com/csharp/DSWatchEx/DSWatchEx_src.zip
Program and demo: http://www.codeproject.com/csharp/DSWatchEx/DSWatchEx_demo.zip
Another version is VS 2005 debug visualizer, Which is vs2005 of dswatch. Dataset, datatable, dataview, datarow and datacolumn for real-time debugging.
: Http://www.codeproject.com/csharp/DataDebuggerVisualizer/DataDebuggerVisualizer_src.zip