Info
Version: | 0.5.0 |
Author(s): | Jeff Walker |
Last Update: | Tuesday, May 26, 2020 |
.NET Fiddle: | Create the first Fiddle |
Project Url: | https://github.com/WalkerCodeRanger/ExhaustiveMatching |
NuGet Url: | https://www.nuget.org/packages/ExhaustiveMatching.Analyzer |
Install
Install-Package ExhaustiveMatching.Analyzer
dotnet add package ExhaustiveMatching.Analyzer
paket add ExhaustiveMatching.Analyzer
ExhaustiveMatching.Analyzer Download (Unzip the "nupkg" after downloading)
Dependencies
Tags
Get compiler errors for missing cases in a switch statement or expression.
Mark which switches should have exhaustiveness checking by throwing an exception in the default case. Exhaustiveness checking works not just for enums, but for classes and interfaces.
Turn them into discriminated unions (aka sum types) by marking them with the 'Closed' attribute and listing the cases. ExhaustiveMatching.Analyzer goes beyond what other languages support by handling full inheritance hierarchies.