//────────────────────────────────────────
        /// <summary>
        /// コンストラクター。
        /// </summary>
        /// <param name="name_Node"></param>
        /// <param name="parent_Conf_OrNull"></param>
        public Configurationtree_NodeImpl(string name_Node, Configuration_Node parent_Conf_OrNull)
            : base(name_Node, parent_Conf_OrNull)
        {
            this.list_Child = new List_Configurationtree_NodeImpl(this);

            this.dictionary_Attribute = new Dictionary_Configurationtree_StringImpl(this);
        }
 //────────────────────────────────────────
 /// <summary>
 /// コンストラクター。
 /// </summary>
 public Dictionary_Fsetvar_ConfigurationtreeImpl()
 {
     Configurationtree_Node parent_Cf_Null = null;//TODO:this
     this.list_Child = new List_Configurationtree_NodeImpl(parent_Cf_Null);
 }