CodeChops.MagicEnums 2.9.9

There is a newer version of this package available.
See the version list below for details.
dotnet add package CodeChops.MagicEnums --version 2.9.9
NuGet\Install-Package CodeChops.MagicEnums -Version 2.9.9
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="CodeChops.MagicEnums" Version="2.9.9" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add CodeChops.MagicEnums --version 2.9.9
#r "nuget: CodeChops.MagicEnums, 2.9.9"
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
// Install CodeChops.MagicEnums as a Cake Addin
#addin nuget:?package=CodeChops.MagicEnums&version=2.9.9

// Install CodeChops.MagicEnums as a Cake Tool
#tool nuget:?package=CodeChops.MagicEnums&version=2.9.9

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 StrictDirectionModes: https://github.com/Code-Chops/Geometry/;
  • 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 DiscoverEnumMembers-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 DiscoverEnumMembers-attribute with implicitDiscoverability = true;
      • Use {Enum}.{Member} to create a source generated enum-member on the fly;
  • 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 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. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

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.0 494 3/20/2023
3.8.3 368 3/10/2023
3.8.2 367 3/6/2023
3.8.0 358 1/27/2023
3.7.1 352 1/22/2023
3.6.0 728 1/7/2023
3.5.0 365 1/6/2023
3.4.4 455 1/6/2023
3.4.2 327 1/4/2023
3.4.1 400 1/3/2023
3.4.0 339 1/2/2023
3.3.9 295 1/2/2023
3.3.5 351 12/23/2022
3.3.4 307 12/22/2022
3.3.3 291 12/19/2022
3.3.2 329 12/16/2022
3.3.1 334 12/15/2022
3.3.0 309 12/14/2022
2.9.9 543 9/17/2022
2.9.8 536 9/16/2022
2.9.5 545 9/16/2022
2.9.4 431 9/15/2022
2.9.3 459 9/14/2022
1.5.1 551 7/11/2022
1.5.0 721 7/11/2022
1.4.3 602 7/11/2022
1.4.2 1,161 7/10/2022
1.4.1 802 7/8/2022
1.3.10 548 7/8/2022
1.2.9 853 7/6/2022
1.2.8 426 7/6/2022
1.2.7 420 7/5/2022
1.2.6 432 7/5/2022
1.2.5 1,501 6/23/2022
1.2.4 413 6/22/2022
1.2.3 655 6/21/2022
1.2.2 449 6/14/2022
1.2.1 2,072 6/14/2022
1.2.0 1,297 6/13/2022
1.1.1 1,765 3/16/2022
1.1.0 444 3/9/2022
1.0.3 565 3/4/2022
1.0.2 436 3/3/2022
1.0.1 440 3/3/2022
0.9.6 452 2/20/2022

Updated package references.