可能重复:
忽略 C# 中的异常
有时在极少数情况下,您真的只想忽略异常。做这个的最好方式是什么?我的方法是捕获异常但不做任何事情。其他的?
try
{
blah
}
catch (Exception e)
{
<nothing here>
}