private void  fromJSONProfiles(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 Profiles of HoundifyExplorerConfigJSON is not an array.");
        }
        int count1 = json_array1.componentCount();

        if (count1 < 1)
        {
            throw new Exception("The value for field Profiles of HoundifyExplorerConfigJSON has too few elements.");
        }
        List <HoundifyExplorerProfileJSON> vector_Profiles1 = new List <HoundifyExplorerProfileJSON>(count1);

        for (int num1 = 0; num1 < count1; ++num1)
        {
            HoundifyExplorerProfileJSON convert_classy = HoundifyExplorerProfileJSON.from_json(json_array1.component(num1), ignore_extras, true);
            vector_Profiles1.Add(convert_classy);
        }
        Debug.Assert(vector_Profiles1.Count >= 1);
        initProfiles();
        for (int num1 = 0; num1 < vector_Profiles1.Count; ++num1)
        {
            appendProfiles(vector_Profiles1[num1]);
        }
        for (int num1 = 0; num1 < vector_Profiles1.Count; ++num1)
        {
        }
    }
 public void appendProfiles(HoundifyExplorerProfileJSON to_append)
 {
     if (!flagHasProfiles)
     {
         flagHasProfiles = true;
         storeProfiles.Clear();
     }
     Debug.Assert(flagHasProfiles);
     storeProfiles.Add(to_append);
 }