Exemple #1
0
    private void  fromJSONStandings(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 Standings of SportsStandingsInformationNuggetJSON is not an array.");
        }
        int count1 = json_array1.componentCount();

        if (count1 < 1)
        {
            throw new Exception("The value for field Standings of SportsStandingsInformationNuggetJSON has too few elements.");
        }
        List <SportsStandingsJSON> vector_Standings1 = new List <SportsStandingsJSON>(count1);

        for (int num1 = 0; num1 < count1; ++num1)
        {
            SportsStandingsJSON convert_classy = SportsStandingsJSON.from_json(json_array1.component(num1), ignore_extras, true);
            vector_Standings1.Add(convert_classy);
        }
        Debug.Assert(vector_Standings1.Count >= 1);
        initStandings();
        for (int num2 = 0; num2 < vector_Standings1.Count; ++num2)
        {
            appendStandings(vector_Standings1[num2]);
        }
        for (int num1 = 0; num1 < vector_Standings1.Count; ++num1)
        {
        }
    }
Exemple #2
0
 public void appendStandings(SportsStandingsJSON to_append)
 {
     if (!flagHasStandings)
     {
         flagHasStandings = true;
         storeStandings.Clear();
     }
     Debug.Assert(flagHasStandings);
     storeStandings.Add(to_append);
 }