官术网_书友最值得收藏!

Exception filters

You can filter exceptions more easily with the when keyword. You no longer need to catch every type of exception that you are interested in and then filter it manually inside the catch block. This is a feature that was already present in VB and F#, so it's nice that C# has finally caught up.

There are some small benefits to this approach. For example, if your filter is not matched, then the exception will still be caught by other catch blocks in the same try statement. You also don't need to remember to rethrow the exception to avoid it from being swallowed. This helps with debugging, as Visual Studio will no longer break as it would when you use throw.

For example, you could check to see whether there is a message in the exception and handle it differently, as shown here:

catch (Exception e) when (e?.Message?.Length > 0)

When this feature was in development, a different keyword (if) was used. So be careful of any old information online.

One thing to keep in mind is that relying on a particular exception message is fragile. If your application is localized, then the message may be in a different language to what you expect. This holds true outside of exception filtering too.

主站蜘蛛池模板: 绥德县| 佳木斯市| 冀州市| 肇州县| 武夷山市| 镇雄县| 广德县| 印江| 马山县| 响水县| 白河县| 临夏市| 临澧县| 连南| 天全县| 宝坻区| 南江县| 遵义县| 嘉义县| 石门县| 台中市| 康平县| 政和县| 宜昌市| 银川市| 青神县| 西安市| 禄劝| 象山县| 清水河县| 泸州市| 通州区| 迁西县| 昌平区| 隆德县| 沧源| 曲松县| 离岛区| 曲阳县| 馆陶县| 鸡东县|