且构网

分享程序员开发的那些事...
且构网 - 分享程序员编程开发的那些事

帮助从列表项中读取字符串值

更新时间:2023-11-13 21:58:22

哈希表正在填充所有已更新的记录,只是代理名称:

A hashtable was being populated with all records I''ve updated this to just be the Agent Name:
//Creating New Hashtable and adding key and values for staging agents name through List Collection
            System.Collections.Hashtable StagingAgtTaskCntbyht = new System.Collections.Hashtable();

            for (var i = 0; i < output.GetStagAgtNmbyList.Count; i++)
            {
                StagingAgtTaskCntbyht.Add(output.GetStagAgtNmbyList[i].AgtName, 0);
            }