Unable to deserialize the JSON result in C#. Input string is not in a correct format error
问题 I am trying to deserialize a json output to a C# object. JSON result: {"order":{"commission":3.490000,"cost":4.490000,"duration":"day","extended_hours ":false,"fees":0.000000,"class":"equity","price":1.000000,"quantity":1.000000,"r equest_date":"2013-11-26T09:43:17.118Z","result":true,"side":"buy","status":"ok" ,"symbol":"DIS","type":"limit"}} My derived class from JSON: public class Rootobject { public Order Order { get; set; } } public class Order { public float commission { get; set; }