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!
Check it out...
The Microsoft TechEd 2003 conference material is on-line.