7

Using a dictionary as deserialization target model for a paid cart.

 3 years ago
source link: https://gist.github.com/einarwh/c2061a58e7c58e71e3ebe38ebebdd98a
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
Using a dictionary as deserialization target model for a paid cart. · GitHub

Instantly share code, notes, and snippets.

Using a dictionary as deserialization target model for a paid cart.

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 paidCartBagFromText = JsonConvert.DeserializeObject<Dictionary<string, object>>(paidCartJsonString);

var firstItemTitle = paidCartBagFromText["paidItems"][0]["title"]; var currency = paidCartBagFromText["payment"]["currency"];


About Joyk


Aggregate valuable and interesting links.
Joyk means Joy of geeK