本文介绍了如何在C#中读取JSON?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我有JSON结构,我需要在c中读取json Zip值。



我尝试过:



JSON结构如

{

billingAccountNumber:449239621,

serviceAddress :{

address1:9337 MIRA VALLE LN,

stateCode:FL,

city: WINTER GARDEN,

zip:34787-,

countryCode:USA,

address2:

},

I have JSON structure, and I need to read json Zip value in c#

What I have tried:

JSON Structure like
{
"billingAccountNumber": "449239621",
"serviceAddress": {
"address1": "9337 MIRA VALLE LN",
"stateCode": "FL",
"city": "WINTER GARDEN",
"zip": "34787-",
"countryCode": "USA",
"address2": ""
},

推荐答案



这篇关于如何在C#中读取JSON?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

09-05 09:04