StaticMemberEnum.Generator
1.0.0
Install-Package StaticMemberEnum.Generator -Version 1.0.0
dotnet add package StaticMemberEnum.Generator --version 1.0.0
<PackageReference Include="StaticMemberEnum.Generator" Version="1.0.0" />
paket add StaticMemberEnum.Generator --version 1.0.0
#r "nuget: StaticMemberEnum.Generator, 1.0.0"
// Install StaticMemberEnum.Generator as a Cake Addin
#addin nuget:?package=StaticMemberEnum.Generator&version=1.0.0
// Install StaticMemberEnum.Generator as a Cake Tool
#tool nuget:?package=StaticMemberEnum.Generator&version=1.0.0
Static Property Enum Generator
Why
Enums are great, but often data has a fixed set of known values AND should allows for unknown values.
This can be accomplished with static members on a type. For example System.Drawing.Color. More examples and exploration is availabe here.
This comes with some disadvantages though, like not being able to list the known values without writing boilerplate for every type.
That's what this library solves. It uses the new C# 9 Source Generators to automattically add a .KnownValues()
including all static members that have the same type as the containing declaration.
Example. Given
namespace Some.Namespace{
[StaticMemberEnum]
partial class GolfClubTypes{
private readonly string _id;
public GolfClubTypes(string id) => _id = id;
public static GolfClubTypes Driver = new GolfClubTypes("Driver");
public static GolfClubTypes Iron = new GolfClubTypes("Iron");
public static GolfClubTypes Wedge = new GolfClubTypes("Wedge");
public static GolfClubTypes Hybrid = new GolfClubTypes("Hybrid");
public static GolfClubTypes Wood = new GolfClubTypes("Wood");
}
}
The library generates
namespace Some.Namespace{
partial class GolfClubTypes{
public static IEnumerable<GolfClubTypes> KnownValues(){
return new []{Driver, Iron, Wedge, Hybrid, Woood};
}
}
}
So that you can call
IEnumerable<GolfClubTypes> clubs = GolfClubTypes.KnownValues();
A few potential gotchas
- The member enum definition has to be partial because source generators behave about the same as adding new sources files.
- This generator currently doesn't work on nested classes. It would require the whole hierarchy of classes to be partial. That seems smelly to me, so I decided not to support it. Let me know in the github issues if you have reasons I should change my mind.
- Classes won't have value-based equality behavior by default, and structs don't define
==
by default. I recommend using records.- You can use a generator like Generator.Equals if you still want a class or struct
- Structs should only be used with very small values (under 16 bytes). See the offical explanation
Product | Versions |
---|---|
.NET | net5.0 net5.0-windows net6.0 net6.0-android net6.0-ios net6.0-maccatalyst net6.0-macos net6.0-tvos net6.0-windows |
.NET Core | netcoreapp2.0 netcoreapp2.1 netcoreapp2.2 netcoreapp3.0 netcoreapp3.1 |
.NET Standard | netstandard2.0 netstandard2.1 |
.NET Framework | net461 net462 net463 net47 net471 net472 net48 |
MonoAndroid | monoandroid |
MonoMac | monomac |
MonoTouch | monotouch |
Tizen | tizen40 tizen60 |
Xamarin.iOS | xamarinios |
Xamarin.Mac | xamarinmac |
Xamarin.TVOS | xamarintvos |
Xamarin.WatchOS | xamarinwatchos |
-
.NETStandard 2.0
- No dependencies.
NuGet packages
This package is not used by any NuGet packages.
GitHub repositories
This package is not used by any popular GitHub repositories.
Version | Downloads | Last updated |
---|---|---|
1.0.0 | 203 | 12/29/2020 |