So I know that you shouldn\'t use
Thread.Abort()
But I\'ve never been given a good explanation. Is there a performance penalty or some hid
Thread.Abort rises an exception in the target thread. Target thread in the meantime can be performing some critical operations and rising an exception can break your application state.