adspace


I want to serialize instances of my class. Should I use xmlserializer, soapformatter or binaryformatter?

Answer Posted / Ravi Shekhar Kumar

The choice between `XmlSerializer`, `SoapFormatter`, or `BinaryFormatter` depends on your specific requirements. Use XmlSerializer when you need to serialize and deserialize XML data, SoapFormatter for SOAP messages, and BinaryFormatter for binary data storage in memory.

Is This Answer Correct ?    0 Yes 0 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

Write the .net syntax for 'while loop'?

1143