Use XML DTD as template to generate XML in C# -
only xml dtd provided. how create xml giving class?
for simple dtd, can use regular expression extract fields , populate xml. there systematic way?
you can create xsd schema dtd using visual studio. open dtd in visual studio , 'create schema' function. there, can use xsd.exe command line utility generate class >> xsd yourschema.xsd /c. newly generated class, can use xmlserializer serialize object xml.
Comments
Post a Comment