Example #1
0
 public static ArrayList GetSubDoers_ToEdit(Doer parentDoer, string subDoerKey)         //可以直接插入删除
 {
     return(parentDoer.GetOrAddTmp(subDoerKey, () => new ArrayList()));
 }
Example #2
0
 public static Hashtable GetSubDoerDict_ToEdit(Doer parentDoer, string subDoerKey)         //可以直接插入删除
 {
     return(parentDoer.GetOrAddTmp(subDoerKey, () => new Hashtable()));
 }
Example #3
0
        public static Hashtable GetSubDoerDict_ToEdit(Doer parentDoer, string subDoerKey)         //进行直接修改
        {
            var dict = parentDoer.GetOrAddTmp(subDoerKey, () => new Hashtable());

            return(dict);
        }