CodeChops.MagicEnums
1.4.1
See the version list below for details.
dotnet add package CodeChops.MagicEnums --version 1.4.1
NuGet\Install-Package CodeChops.MagicEnums -Version 1.4.1
<PackageReference Include="CodeChops.MagicEnums" Version="1.4.1" />
paket add CodeChops.MagicEnums --version 1.4.1
#r "nuget: CodeChops.MagicEnums, 1.4.1"
// Install CodeChops.MagicEnums as a Cake Addin #addin nuget:?package=CodeChops.MagicEnums&version=1.4.1 // Install CodeChops.MagicEnums as a Cake Tool #tool nuget:?package=CodeChops.MagicEnums&version=1.4.1
Flexible and extendable enums for C#:
It is possible to use other member values than integral types. For example:
- Strings that automatically represent their member name:
- This prohibits incorrect usage of integral values when they are not needed;
- It removes the need to keep track of (incremental) integral values;
- Custom defined types, for example see StrictDirection: https://github.com/Code-Chops/Geometry/;
- Strings that automatically represent their member name:
Inheritance and/or partial records can be used to extend your enums:
- Enums can now be extended in multiple projects;
- Custom methods can be added to enums, if necessary;
Enum-members can be auto-discovered. This removes the need to keep track of used/unused enum-members:
- Explicitly:
- Is enabled by adding the DiscoverableEnumMembers-attribute;
- Use {Enum}.{Member}.CreateMember(...) to create a source generated enum-member on the fly;
- A member value (and comment) can be provided;
- Implicitly:
- Is enabled by adding the DiscoverableEnumMembers-attribute with implicitDiscoverability = true;
- Use {Enum}.{Member} to create a source generated enum-member on the fly;
- Explicitly:
Enum members can be added at runtime, if necessary;
Has the same functionality as the default .NET enum:
- Members can be found by using their name or value;
- Multiple members with the same value can even be looked up: This is not supported in default C# enums;
Optimized, and therefore fast member registration / lookup;
Product | Versions Compatible and additional computed target framework versions. |
---|---|
.NET | net6.0 is compatible. net6.0-android was computed. net6.0-ios was computed. net6.0-maccatalyst was computed. net6.0-macos was computed. net6.0-tvos was computed. net6.0-windows was computed. net7.0 was computed. net7.0-android was computed. net7.0-ios was computed. net7.0-maccatalyst was computed. net7.0-macos was computed. net7.0-tvos was computed. net7.0-windows was computed. net8.0 was computed. net8.0-android was computed. net8.0-browser was computed. net8.0-ios was computed. net8.0-maccatalyst was computed. net8.0-macos was computed. net8.0-tvos was computed. net8.0-windows was computed. |
-
net6.0
- CodeChops.GenericMath (>= 1.3.4)
- CodeChops.Identities (>= 0.0.6)
NuGet packages (2)
Showing the top 2 NuGet packages that depend on CodeChops.MagicEnums:
Package | Downloads |
---|---|
CodeChops.ImplementationDiscovery
Provides easy-accessible, design-time and runtime information about implementations throughout your code. |
|
CodeChops.MagicEnums.Json
Json (de)serialization for MagicEnums. |
GitHub repositories
This package is not used by any popular GitHub repositories.
Version | Downloads | Last updated |
---|---|---|
3.9.2 | 341 | 10/16/2024 |
3.9.1 | 209 | 9/29/2024 |
3.9.0 | 639 | 3/20/2023 |
3.8.3 | 429 | 3/10/2023 |
3.8.2 | 448 | 3/6/2023 |
3.8.0 | 416 | 1/27/2023 |
3.7.1 | 408 | 1/22/2023 |
3.6.0 | 859 | 1/7/2023 |
3.5.0 | 416 | 1/6/2023 |
3.4.4 | 529 | 1/6/2023 |
3.4.2 | 369 | 1/4/2023 |
3.4.1 | 458 | 1/3/2023 |
3.4.0 | 383 | 1/2/2023 |
3.3.9 | 332 | 1/2/2023 |
3.3.5 | 397 | 12/23/2022 |
3.3.4 | 347 | 12/22/2022 |
3.3.3 | 323 | 12/19/2022 |
3.3.2 | 365 | 12/16/2022 |
3.3.1 | 360 | 12/15/2022 |
3.3.0 | 339 | 12/14/2022 |
2.9.9 | 592 | 9/17/2022 |
2.9.8 | 576 | 9/16/2022 |
2.9.5 | 591 | 9/16/2022 |
2.9.4 | 469 | 9/15/2022 |
2.9.3 | 487 | 9/14/2022 |
1.5.1 | 586 | 7/11/2022 |
1.5.0 | 758 | 7/11/2022 |
1.4.3 | 641 | 7/11/2022 |
1.4.2 | 1,221 | 7/10/2022 |
1.4.1 | 838 | 7/8/2022 |
1.3.10 | 593 | 7/8/2022 |
1.2.9 | 912 | 7/6/2022 |
1.2.8 | 457 | 7/6/2022 |
1.2.7 | 456 | 7/5/2022 |
1.2.6 | 464 | 7/5/2022 |
1.2.5 | 1,581 | 6/23/2022 |
1.2.4 | 449 | 6/22/2022 |
1.2.3 | 697 | 6/21/2022 |
1.2.2 | 487 | 6/14/2022 |
1.2.1 | 2,163 | 6/14/2022 |
1.2.0 | 1,355 | 6/13/2022 |
1.1.1 | 1,850 | 3/16/2022 |
1.1.0 | 478 | 3/9/2022 |
1.0.3 | 611 | 3/4/2022 |
1.0.2 | 472 | 3/3/2022 |
1.0.1 | 471 | 3/3/2022 |
0.9.6 | 481 | 2/20/2022 |
Added GetValues() method. Fixed minor issues.