vote up 1 vote down star

We are searching for an Library which supports the marshalling and unmarshalling like JAX-B in Java, is there any state-of-the-art library to use?

flag

1  
stackoverflow.com/questions/765422/… – AakashM Aug 11 at 9:13
1  
I don't think this is a dupe. For what I understand from the question, I think the OP is trying to find a framework similar to JAXB an not an external tool... – bruno conde Aug 11 at 9:41
you got it bruno conde – chrsk Aug 14 at 13:12

2 Answers

vote up 1 vote down check

Like Bruno said, what you're looking for is in the System.Xml.Serialization namespace, more specifically the XmlSerializer class. To serialize an object into XML, you just need to call the Serialize method, and the reverse can be done with the Deserialize method. For more information, have a look at the MSDN topic Introducing XML Serialization.

You can sometimes hit a snag when serializing to XML, if you're having trouble be sure to check out (and contribute to) this thread.

link|flag
vote up 0 vote down

System.Xml.Serialization Namespace is what you need. It can work with attributes, like Java annotations.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.