Thursday 5 December 2013

C# - How to fix error - The type or namespace name 'Threading' could not be found (are you missing a using directive or an assembly reference?)

Watch this example on YouTube


Replace
 catch (Threading.ThreadAbortException ex) { }
with
 catch (System.Threading.ThreadAbortException ex) { }

No comments:

Post a Comment