Domande taggate «json-serialization»

8
Come posso serializzare un tipo anonimo C # su una stringa JSON?
Sto tentando di utilizzare il seguente codice per serializzare un tipo anonimo su JSON: var serializer = new DataContractJsonSerializer(thing.GetType()); var ms = new MemoryStream(); serializer.WriteObject(ms, thing); var json = Encoding.Default.GetString(ms.ToArray()); Tuttavia, ottengo la seguente eccezione quando viene eseguita: Digitare '<> f__AnonymousType1`3 [System.Int32, System.Int32, System.Object []]' non può essere serializzato. Valuta …

Utilizzando il nostro sito, riconosci di aver letto e compreso le nostre Informativa sui cookie e Informativa sulla privacy.
Licensed under cc by-sa 3.0 with attribution required.