Home »

Does the .NET Framework have in-built support for serialization?

Question ListCategory: .NETDoes the .NET Framework have in-built support for serialization?
jully882 author asked 8 years ago
1 Answers
jessica537 author answered 8 years ago

There are two separate mechanisms provided by the .NET class library – XmlSerializer and SoapFormatter/BinaryFormatter.Microsoft uses XmlSerializer for Web Services, and uses SoapFormatter/BinaryFormatter for remoting. Both are available for use in your own code.

Please login or Register to Submit Answer