Is there a better way to ignore an exception in C# than putting it up in a try catch block and doing nothing in catch? I find this syntax to be cumbersome. For a codeblock,
No. When exceptios occur, they travel back up the call stack either until they are handled by a catch block or the entire process terminates.
catch