Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有一段代码可以执行此操作:
try{ ... my code here ... }catch(Exception e){ ... handle all exceptions here }
在我的代码中,一个 InvalidOperationException 被抛出。然而,渔获并没有捕获和处理它。我怎么能把它困住?我认为“异常”会在尝试中捕获所有内容??我做了一个快速的谷歌搜索,显然这是 Silverlight 中的一个常见问题。
这样做的问题是异常被抛出在不同的线程中。我跟踪了所有线程并在其他地方设置了其他尝试/捕获,果然我明白了。