But then, won't using a dataset make the application unnecessarily heavy? In
my case, performance is of utmost importance.
Keeping in view, the XML I'm dealing with is very elementary, having
children only of the root node, and no attributes at all whatsoever.
Something of the sort:
<abc>
<xyz>xyz</xyz>
<pqr>pqr</pqr>....
(probably about 30-40 elements like this... with some repetition of the
same element)
</abc>
Was earlier using the DOM, but that was about 2-3x slower than this
XMLSerialize object approach.
Could you by any chance quantify the time / speed if I use a dataset?
"Cor Ligthert" wrote:
> Nick,
>
> Always the same question on this, why not a dataset which has (is build for)
> in my opinion all elements you ask for.
>
> Cor
>
>
>
|