/** Convert
         */
        public static void Convert(ref System.Object a_to_ref_object, System.Type a_to_type, JsonItem a_from_jsonitem, JsonItemToObject_WorkPool a_workpool)
        {
            try{
                //IDictionary
                {
                    System.Collections.IDictionary t_to_dictionary = a_to_ref_object as System.Collections.IDictionary;
                    if (t_to_dictionary != null)
                    {
                        System.Type t_list_key_type = Fee.ReflectionTool.Utility.GetDictionaryKeyType(a_to_type);
                        if (t_list_key_type == typeof(string))
                        {
                            //Generic.Dictionary<string.>
                            //Generic.SortedDictionary<string,>
                            //Generic.SortedList<string,>

                            //リスト型の値型。取得。
                            System.Type t_list_value_type = Fee.ReflectionTool.Utility.GetListValueType(a_to_type);

                            System.Collections.Generic.Dictionary <string, JsonItem> .KeyCollection t_keylist = a_from_jsonitem.GetAssociativeKeyList();

                            //ワークに追加。
                            foreach (string t_listitem_key_string in t_keylist)
                            {
                                JsonItem t_listitem_jsonitem = a_from_jsonitem.GetItem(t_listitem_key_string);
                                a_workpool.AddFirst(JsonItemToObject_WorkPool.ModeAddStringDictionary.Start, t_listitem_jsonitem, t_listitem_key_string, t_to_dictionary, t_list_value_type);
                            }

                            //完了。
                            return;
                        }
                        else
                        {
                            //Generic.Dictionary<xxxx.>
                            //Generic.SortedDictionary<xxxx,>
                            //Generic.SortedList<xxxx,>

                            //未対応。
                        }
                    }
                }

                //class,struct
                if (a_to_ref_object != null)
                {
                    System.Collections.Generic.List <System.Reflection.FieldInfo> t_fieldinfo_list = new System.Collections.Generic.List <System.Reflection.FieldInfo>();
                    Fee.JsonItem.ConvertTool.GetMemberListAll(a_to_type, t_fieldinfo_list);

                    //ワークに追加。
                    foreach (System.Reflection.FieldInfo t_fieldinfo in t_fieldinfo_list)
                    {
                        if (a_from_jsonitem.IsExistItem(t_fieldinfo.Name) == true)
                        {
                            JsonItem t_jsonitem_classmember = a_from_jsonitem.GetItem(t_fieldinfo.Name);
                            a_workpool.AddFirst(JsonItemToObject_WorkPool.ModeFieldInfo.Start, t_jsonitem_classmember, t_fieldinfo, a_to_ref_object);
                        }
                    }

                    //完了。
                    return;
                }
            }catch (System.Exception t_exception) {
                Tool.DebugReThrow(t_exception);
            }

            //失敗。
            Tool.Assert(false);
        }
        /** Convert
         */
        public static void Convert(ref System.Object a_to_refobject, System.Type a_to_type, JsonItem a_from_jsonitem, WorkPool a_workpool)
        {
            //IList
            {
                System.Collections.IList t_to_list = a_to_refobject as System.Collections.IList;
                if (t_to_list != null)
                {
                    //値型。取得。
                    System.Type t_list_value_type = ReflectionTool.ReflectionTool.GetListValueType(a_to_type);

                    if (t_to_list.IsFixedSize == true)
                    {
                        //[]

                        //ワークに追加。
                        for (int ii = a_from_jsonitem.GetListMax() - 1; ii >= 0; ii--)
                        {
                            JsonItem t_jsonitem_listitem = a_from_jsonitem.GetItem(ii);
                            a_workpool.AddFirst(WorkPool.ModeSetList.Start, t_jsonitem_listitem, t_to_list, ii, t_list_value_type);
                        }
                    }
                    else
                    {
                        //Generic.List

                        //ワークに追加。
                        for (int ii = a_from_jsonitem.GetListMax() - 1; ii >= 0; ii--)
                        {
                            JsonItem t_jsonitem_listitem = a_from_jsonitem.GetItem(ii);
                            a_workpool.AddFirst(WorkPool.ModeAddList.Start, t_jsonitem_listitem, t_to_list, t_list_value_type);
                        }
                    }

                    //成功。
                    return;
                }
            }

            //IEnumerable
            {
                System.Collections.IEnumerable t_to_enumerable = a_to_refobject as System.Collections.IEnumerable;
                if (t_to_enumerable != null)
                {
                    System.Type t_generic_type = ReflectionTool.ReflectionTool.GetGenericTypeDefinition(a_to_type);

                    //値型。取得。
                    System.Type t_list_value_type = ReflectionTool.ReflectionTool.GetListValueType(a_to_type);

                    //メソッド取得。
                    System.Reflection.MethodInfo t_methodinfo = null;
                    if (t_generic_type == typeof(System.Collections.Generic.Stack <>))
                    {
                        //Generic.Stack

                        t_methodinfo = ConvertTool.GetMethod_Stack_Push(a_to_type, t_list_value_type);

                        if (t_methodinfo != null)
                        {
                            //ワークに追加。
                            for (int ii = 0; ii < a_from_jsonitem.GetListMax(); ii++)
                            {
                                JsonItem t_jsonitem_listitem = a_from_jsonitem.GetItem(ii);
                                a_workpool.AddFirst(WorkPool.ModeIEnumerable.Start_Param1, t_jsonitem_listitem, t_to_enumerable, t_methodinfo, t_list_value_type);
                            }

                            //成功。
                            return;
                        }
                    }
                    else if (t_generic_type == typeof(System.Collections.Generic.LinkedList <>))
                    {
                        //Generic.LinkedList
                        t_methodinfo = ConvertTool.GetMethod_LinkedList_AddLast(a_to_type, t_list_value_type);
                    }
                    else if (t_generic_type == typeof(System.Collections.Generic.HashSet <>))
                    {
                        //Generic.HashSet
                        t_methodinfo = ConvertTool.GetMethod_HashSet_Add(a_to_type, t_list_value_type);
                    }
                    else if (t_generic_type == typeof(System.Collections.Generic.Queue <>))
                    {
                        //Generic.Queue
                        t_methodinfo = ConvertTool.GetMethod_Queue_Enqueue(a_to_type, t_list_value_type);
                    }
                    else if (t_generic_type == typeof(System.Collections.Generic.SortedSet <>))
                    {
                        //Generic.SortedSet
                        t_methodinfo = ConvertTool.GetMethod_SortedSet_Add(a_to_type, t_list_value_type);
                    }

                    if (t_methodinfo != null)
                    {
                        //ワークに追加。
                        for (int ii = a_from_jsonitem.GetListMax() - 1; ii >= 0; ii--)
                        {
                            JsonItem t_jsonitem_listitem = a_from_jsonitem.GetItem(ii);
                            a_workpool.AddFirst(WorkPool.ModeIEnumerable.Start_Param1, t_jsonitem_listitem, t_to_enumerable, t_methodinfo, t_list_value_type);
                        }

                        //成功。
                        return;
                    }
                }
            }

            //IDictionary
            {
                System.Collections.IDictionary t_to_dictionary = a_to_refobject as System.Collections.IDictionary;
                if (t_to_dictionary != null)
                {
                    //キー型。
                    System.Type t_list_key_type = ReflectionTool.ReflectionTool.GetDictionaryKeyType(a_to_type);

                    //値型。
                    System.Type t_list_value_type = ReflectionTool.ReflectionTool.GetListValueType(a_to_type);

                    //ワークに追加。
                    for (int ii = 0; ii < a_from_jsonitem.GetListMax(); ii++)
                    {
                        JsonItem t_listitem_jsonitem = a_from_jsonitem.GetItem(ii);

                        JsonItem t_key_jsonitem   = null;
                        JsonItem t_value_jsonitem = null;

                        if (t_listitem_jsonitem.IsAssociativeArray() == true)
                        {
                            if (t_listitem_jsonitem.IsExistItem("KEY"))
                            {
                                t_key_jsonitem = t_listitem_jsonitem.GetItem("KEY");
                            }
                            if (t_listitem_jsonitem.IsExistItem("VALUE"))
                            {
                                t_value_jsonitem = t_listitem_jsonitem.GetItem("VALUE");
                            }
                        }

                        a_workpool.AddFirst(WorkPool.ModeAddAnyDictionary.Start, t_key_jsonitem, t_value_jsonitem, t_to_dictionary, t_list_key_type, t_list_value_type);
                    }

                    //成功。
                    return;
                }
            }

            //失敗。

                        #if (DEF_BLUEBACK_JSONITEM_ASSERT)
            DebugTool.Assert(false);
                        #endif
        }