7

選択した値をlistBoxから削除する次のコードを作成しました。また、辞書リストから削除してからテキストファイルに更新/書き込みしたいので、プログラムを再度実行してテキストファイルをロードすると、実行するたびに削除されたアイテムが表示され続ける場合は更新されます。再びアプリケーション。

private void listBox1_KeyDown(object sender, KeyEventArgs e)
        {
            string sb;
            if (e.KeyCode == Keys.Delete)
            {
                if (this.listBox1.SelectedIndex >= 0)
                {
                    string obj = this.listBox1.SelectedValue.ToString();
                    data.Remove(obj);
                    listBox1.DataSource = null;
                    listBox1.DataSource = data;
                    foreach (KeyValuePair<string, List<string>> kvp in LocalyKeyWords)
                    {
                        for (int i = 0; i < kvp.Value.Count(); i++)
                        {
                            sb = "Url: " + kvp.Key + " --- " + "Local KeyWord: " + kvp.Value[i] + Environment.NewLine;
                            LocalyKeyWords.Remove(kvp.Key);
                        }
                    }

                }
            }

        }

LocalyKeyWordsは辞書です>

この場合、2つのアイテム/キーが含まれています。1つを削除すると、ブレークポイントでこれが削除されたことがわかります。

問題は、kvp.Keyを削除する必要があるのか​​、それともリストボックスから削除したアイテムを削除する必要があるのか​​ということです。これは、LocalyKeywordsから削除したいものであり、実行してからobj変数です。

data.Remove(obj);

だから多分私はlocalyKeyWordsからもobjを削除する必要がありますか?

エラーが発生する例外は、LocalyKeyWordsからアイテムを削除した後、次の行をクリックして続行することです。

foreach (KeyValuePair<string, List<string>> kvp in LocalyKeyWords)

エラーが発生しました:

コレクションが変更されました。列挙操作が実行されない場合があります

System.InvalidOperationException was unhandled
  HResult=-2146233079
  Message=Collection was modified; enumeration operation may not execute.
  Source=mscorlib
  StackTrace:
       at System.ThrowHelper.ThrowInvalidOperationException(ExceptionResource resource)
       at System.Collections.Generic.Dictionary`2.Enumerator.MoveNext()
       at GatherLinks.Form1.listBox1_KeyDown(Object sender, KeyEventArgs e) in d:\C-Sharp\GatherLinks\GatherLinks\GatherLinks\Form1.cs:line 959
       at System.Windows.Forms.Control.OnKeyDown(KeyEventArgs e)
       at System.Windows.Forms.Control.ProcessKeyEventArgs(Message& m)
       at System.Windows.Forms.Control.ProcessKeyMessage(Message& m)
       at System.Windows.Forms.Control.WmKeyChar(Message& m)
       at System.Windows.Forms.Control.WndProc(Message& m)
       at System.Windows.Forms.ListBox.WndProc(Message& m)
       at System.Windows.Forms.Control.ControlNativeWindow.OnMessage(Message& m)
       at System.Windows.Forms.Control.ControlNativeWindow.WndProc(Message& m)
       at System.Windows.Forms.NativeWindow.DebuggableCallback(IntPtr hWnd, Int32 msg, IntPtr wparam, IntPtr lparam)
       at System.Windows.Forms.UnsafeNativeMethods.DispatchMessageW(MSG& msg)
       at System.Windows.Forms.Application.ComponentManager.System.Windows.Forms.UnsafeNativeMethods.IMsoComponentManager.FPushMessageLoop(IntPtr dwComponentID, Int32 reason, Int32 pvLoopData)
       at System.Windows.Forms.Application.ThreadContext.RunMessageLoopInner(Int32 reason, ApplicationContext context)
       at System.Windows.Forms.Application.ThreadContext.RunMessageLoop(Int32 reason, ApplicationContext context)
       at System.Windows.Forms.Application.Run(Form mainForm)
       at GatherLinks.Program.Main() in d:\C-Sharp\GatherLinks\GatherLinks\GatherLinks\Program.cs:line 18
       at System.AppDomain._nExecuteAssembly(RuntimeAssembly assembly, String[] args)
       at System.AppDomain.ExecuteAssembly(String assemblyFile, Evidence assemblySecurity, String[] args)
       at Microsoft.VisualStudio.HostingProcess.HostProc.RunUsersAssembly()
       at System.Threading.ThreadHelper.ThreadStart_Context(Object state)
       at System.Threading.ExecutionContext.RunInternal(ExecutionContext executionContext, ContextCallback callback, Object state, Boolean preserveSyncCtx)
       at System.Threading.ExecutionContext.Run(ExecutionContext executionContext, ContextCallback callback, Object state, Boolean preserveSyncCtx)
       at System.Threading.ExecutionContext.Run(ExecutionContext executionContext, ContextCallback callback, Object state)
       at System.Threading.ThreadHelper.ThreadStart()
  InnerException: 
4

2 に答える 2

11

LocalyKeyWords繰り返しの最中にアイテムを削除しています。例外メッセージにあるように、これは許可されていません。

ここで全体像が何であるかはわかりませんが、ローカライズされた解決策は、一時的なコピーを作成しLocalyKeyWordsてそれを繰り返すことです。その後、問題なく「ソース」コレクションを変更できます。

例:

foreach (var kvp in LocalyKeyWords.ToList())  // .ToList() makes a temp copy
于 2013-02-24T23:02:08.410 に答える
1

内のIEnumerableコレクションを変更することはできませんforeach

辞書のコピーを作成し、元の辞書を変更してループすることができます。

于 2013-02-24T23:04:03.040 に答える