Search Results

0
votes

How to recover gracefully from TargetInvocationException in multi thread?

Not sure what version of .net you are using if its 3.0+ you can do something along these lines. private void UpdateValue(int newValue) { Action myAction = () => progressBar.V …
6
votes

C# Compiler Enhancement Suggestion

If you have Resharper it will highlight things like this for you. Cant recommend resharper highly enough, it has lots of useful IDE additions especially around refactoring. …