deserialization

More elegant way to deserialize Json with LINQ?

I have data of the following form: { "sections" : [ { "section" : { "Term" : "News", "Term ID" : "4,253" } }, { "section" : { "Term" : "Sports", "Term ID" : "4,254" } }, // ... ] } I would like to serialize it into a collection of the following class: publ...

Trigger WCF error on SOAP interface change

I'm using WCF to call a SOAP service. I created a c# interface from the service with svcutil svcutil /language:cs /CollectionType:System.Collections.Generic.List`1 /targetclientversion:Version35 /namespace:*,Company.Generated /out:Generated\Soapservice.cs http://www.company.se/soapservice.asmx?WSDL Now the SOAP service suddenly cha...