When running my application, I found exception log below in Output panel of Visual Studio.
A first chance exception of type 'System.InvalidOperationException' occurred in System.Windows.Forms.dll
This application's architect is as follows.
- Second thread: Enqueue "add item to listview" or "change item to listview" command into a queue.
- Main thread: Dequeue from a queue and execute add or change operation defined by each command.
I want to know details of InvalidOperationException called from, but it's only shown on Output panel, so I can't catch it for viewing stack trace. Is there a way to know it?