Open marinasundstrom opened 4 days ago
Handle re-throws with throw; in catch-block.
throw;
try { throw new InvalidOperationException(); } catch(InvalidOperationException) { // Assumes "InvalidOperationException" throw; }
And for:
try { throw new InvalidOperationException(); } catch { // Assumes "Exception" throw; }
Handle re-throws with
throw;
in catch-block.And for: