How to view a DataTable while debugging

前端 未结 4 612
南笙
南笙 2020-12-02 08:03

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

4条回答
  •  日久生厌
    2020-12-02 08:17

    set the break point on the dataset/datatable(f9 shortcut key for break point) and run your application (f5 is the shortcutkey ) When the break point comes mouse hover the dataset/datatable click on the glass shown in the hover image in visual studio .

    Note : check compilation debug="true" is true in web config .Else visual studio wont go for debugging .

提交回复
热议问题