i am unable to find out how can I use serialization namespace in silverlight?
When I use tweetsharp, I find that many methods are missing when I try to use them in my silverlight application.
Can someone show me how can I use those namepace or methods in silverlight?
Silverlight has a much-reduced runtime (to suit the required size, and platform limitations). The WCF core (
DataContractSerializer) is still available, though:System.Runtime.Serialization Namespace
as is
XmlSerializer:System.Xml.Serialization Namespace
Other 3rd-party serializers are available for Silverlight as libraries.