Re: [xml-dev] DTD parser in c#

From
Karl Waclawek <>
To
Michelle Tan <>,
Date
2004-03-28T17:23:55Z
ID
<000d01c414e9$73b4a2d0$0500a8c0@karlglen188>
Thread
Re: [xml-dev] DTD parser in c#
> Hi Karl,
> 
> I need a DTD parser to parse the elements/attributes in the DTD for matching
> process in my project. According to your experience, will SAX.NET help
> me in this issue? Thanks for your reply.

Yes, SAX (.NET or otherwise) does provide an API to satisfy your needs.
If you are just interested in parsing a DTD, you need a dummy wrapper document
so that a SAX parser can process the DTD, as Jeff already pointed out.

Karl