在线时间:8:00-16:00
迪恩网络APP
随时随地掌握行业动态
扫描二维码
关注迪恩网络微信公众号
最近在使用vs编码时,重构提示:模式匹配 Element view = bindable as Element; if (view == null) { return; } 运用模式匹配可以简写为: if (!(bindable is Element view)) { return; } 模式匹配在C# 7.0中引入 https://docs.microsoft.com/zh-cn/dotnet/csharp/whats-new/csharp-7#pattern-matching 在8.0中又有增强。 https://docs.microsoft.com/zh-cn/dotnet/csharp/whats-new/csharp-8#more-patterns-in-more-places
|
请发表评论