1

Can anyone explain the differences between System.XML.Serialization and System.Runtime.Serialization ?

Venugopal M
  • 2,280
  • 1
  • 20
  • 30
  • [this answer mentions the difference between the two](https://stackoverflow.com/a/1154429/2431645) – GY_ Sep 27 '17 at 09:24

1 Answers1

1

The System.Xml.Serialization namespace contains classes that are used to serialize objects into XML format documents or streams. The System.Runtime.Serialization namespace contains classes that can be used for serializing and de-serializing objects.

Hulk1991
  • 3,079
  • 13
  • 31
  • 46
  • For Further you can use these links [System.Xml.Serialization Namespace](http://msdn.microsoft.com/en-us/library/system.xml.serialization.aspx), [System.Runtime.Serialization Namespace](http://msdn.microsoft.com/en-us/library/system.runtime.serialization.aspx) – Hulk1991 Jun 12 '13 at 10:39