Пример #1
0
    private void  fromJSONHistoricalQuotes(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 HistoricalQuotes of StockGlobalHistoricalJSON is not an array.");
        }
        int count1 = json_array1.componentCount();
        List <StockGlobalHistoricalQuoteV3JSON> vector_HistoricalQuotes1 = new List <StockGlobalHistoricalQuoteV3JSON>(count1);

        for (int num1 = 0; num1 < count1; ++num1)
        {
            StockGlobalHistoricalQuoteV3JSON convert_classy = StockGlobalHistoricalQuoteV3JSON.from_json(json_array1.component(num1), ignore_extras, true);
            vector_HistoricalQuotes1.Add(convert_classy);
        }
        initHistoricalQuotes();
        for (int num1 = 0; num1 < vector_HistoricalQuotes1.Count; ++num1)
        {
            appendHistoricalQuotes(vector_HistoricalQuotes1[num1]);
        }
        for (int num1 = 0; num1 < vector_HistoricalQuotes1.Count; ++num1)
        {
        }
    }
Пример #2
0
 public void appendHistoricalQuotes(StockGlobalHistoricalQuoteV3JSON to_append)
 {
     if (!flagHasHistoricalQuotes)
     {
         flagHasHistoricalQuotes = true;
         storeHistoricalQuotes.Clear();
     }
     Debug.Assert(flagHasHistoricalQuotes);
     storeHistoricalQuotes.Add(to_append);
 }