I'm having some problems when debugging datasets in C#. During
run-time, I arrive at a break point in my code and goto the command
window. I type MyDataset.GetXM L()
The results are a lot of text with \r\n in it and is very hard to
read. I have to keep scrolling left and right as the text does not
wrap either. When doing the same thing in VB, it writes out actually
carriage returns so that each item appears on a new line. Is there a
way in C# so that it will write out the actual contents of the string
rather then the escaped contents?
? MyDataset.GetXm l()
"<MyDataSet>\r\ n <MyTable>\r\n
<ID>ec209f17-baf9-43e4-8803-d444f6c11bd0</ID>\r\n ...
Lewis Moten
run-time, I arrive at a break point in my code and goto the command
window. I type MyDataset.GetXM L()
The results are a lot of text with \r\n in it and is very hard to
read. I have to keep scrolling left and right as the text does not
wrap either. When doing the same thing in VB, it writes out actually
carriage returns so that each item appears on a new line. Is there a
way in C# so that it will write out the actual contents of the string
rather then the escaped contents?
? MyDataset.GetXm l()
"<MyDataSet>\r\ n <MyTable>\r\n
<ID>ec209f17-baf9-43e4-8803-d444f6c11bd0</ID>\r\n ...
Lewis Moten
Comment