本文介绍了从列表框中选择种子文件时出现异常的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

从列表框中选择torrent文件时出现异常

指定的键在字典中不存在.



I''m getting an exception when selecting torrent files from a list box

The given key was not present in the dictionary.



public IList<TorrentManager> GetSelectedTorrents()
       {
           IList<TorrentManager> result = new List<TorrentManager>();

               foreach (ListViewItem item in mainForm.TorrentsView.SelectedItems)
                   result.Add(itemToTorrent[item]);


           return result;
       }

推荐答案


这篇关于从列表框中选择种子文件时出现异常的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

08-14 17:17