14

Anonymous types can actually be used as targets for deserialization.

 3 years ago
source link: https://gist.github.com/einarwh/174221b0fa05aa4e0ab75236782cd522
Go to the source link to view the article. You can view the picture content, updated content and better typesetting reading experience. If the link is broken, please click the button below to view the snapshot at that time.
neoserver,ios ssh client
Anonymous types can actually be used as targets for deserialization. · GitHub

Instantly share code, notes, and snippets.

Anonymous types can actually be used as targets for deserialization.

var paidCartJsonString = @"{ ""_state"": ""paid"", ""paidItems"": [ { ""id"": ""1bcd"", ""title"": ""gizmo"" }, { ""id"" : ""3cdf"", ""title"": ""widget"", ""description"": ""A very useful item"" } ], ""payment"": { ""amount"": 123.5, ""currency"": ""USD"" }, ""timestamp"": ""2020-04-11T10:11:33.514+02:00"" }";

var anonymousPaidCartObject = JsonConvert.DeserializeAnonymousType(paidCartJsonString, new { _state = default(string), paidItems = new [] { new { id = default(string), title = default(string), description = default(string) } }, payment = new { amount = default(double), currency = default(string) }, timestamp = default(string) });

var firstItemTitle = anonymousPaidCartObject.paidItems[0].title; var currency = anonymousPaidCartObject.payment.currency;


About Joyk


Aggregate valuable and interesting links.
Joyk means Joy of geeK