Carl Prothman's .NET Blog

From the mind of an .NET Developer...

September 2003 - Posts

Viewing the Contents of a DataSet while in Debug Mode

While in debug mode in Visual Studio .NET, do you ever get tired
of typing in the following commands into the Intermediate window?

    ?ds.Tables(0).Rows(0).Item(0)
Or
    ?ds.Tables(0).Columns(0).ColumnName

Well there is an easier way to see the contents of a DataSet! 
Try typing in the following:

    ?ds.GetXml
Or
    ?ds.GetXmlSchema

Enjoy!

 

Microsoft TechEd 2003 - Conference Material On-line

Check it out...

The Microsoft TechEd 2003 conference material is on-line.

Posted: Sep 05 2003, 12:39 PM by carlpr | with 2 comment(s)
Filed under:
More Posts