Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
問題は、JSONが次の形式になっていることです。
{"think":{"median":1.24531,"test":6.2342}}
これはサーバーの出力がどのように見えるかです。それを解析しようとすると、値が引用符で囲まれていないためにエラーが発生します。
それらはdoubleであり、引用符で囲むべきではありません。これは機能します:
var str = @"{""think"":{""median"":1.24531,""test"":6.2342}}"; dynamic dyn = JsonConvert.DeserializeObject(str); Console.WriteLine((double)dyn.think.median);