8
Como serializar um tipo anônimo de C # em uma string JSON?
Estou tentando usar o seguinte código para serializar um tipo anônimo para JSON: var serializer = new DataContractJsonSerializer(thing.GetType()); var ms = new MemoryStream(); serializer.WriteObject(ms, thing); var json = Encoding.Default.GetString(ms.ToArray()); No entanto, recebo a seguinte exceção quando isso é executado: Digite '<> f__AnonymousType1`3 [System.Int32, System.Int32, System.Object []]' não pode ser serializado. …