c#中想将一个hashtable的元素全部给另一个hashbale时,
使用迭代一个一个元素赋值
如:
ammus.Clear();
IDictionaryEnumerator ie = _temp.GetEnumerator();
while (ie.MoveNext())
ammus.Add(ie.Key,ie.Value);
直接变量赋值会导致其他脚本中引用原变量的操作无效,猜测只是指针地址变更。
如:
ammus = _temp;