コード例 #1
0
    private void  fromJSONprices(JSONValue json_value, bool ignore_extras)
    {
        Debug.Assert(json_value != null);
        JSONArrayValue json_array1 = json_value.array_value();

        if (json_array1 == null)
        {
            throw new Exception("The value for field prices of UberPriceEstimatesResponseJSON is not an array.");
        }
        int count1 = json_array1.componentCount();
        List <UberPriceEstimateDetailsJSON> vector_prices1 = new List <UberPriceEstimateDetailsJSON>(count1);

        for (int num1 = 0; num1 < count1; ++num1)
        {
            UberPriceEstimateDetailsJSON convert_classy = UberPriceEstimateDetailsJSON.from_json(json_array1.component(num1), ignore_extras, true);
            vector_prices1.Add(convert_classy);
        }
        initprices();
        for (int num1 = 0; num1 < vector_prices1.Count; ++num1)
        {
            appendprices(vector_prices1[num1]);
        }
        for (int num1 = 0; num1 < vector_prices1.Count; ++num1)
        {
        }
    }
コード例 #2
0
 public void appendprices(UberPriceEstimateDetailsJSON to_append)
 {
     if (!flagHasprices)
     {
         flagHasprices = true;
         storeprices.Clear();
     }
     Debug.Assert(flagHasprices);
     storeprices.Add(to_append);
 }