StaticMemberEnum.Generator
1.0.0
dotnet add package StaticMemberEnum.Generator --version 1.0.0
NuGet\Install-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 Compatible and additional computed target framework versions. |
---|---|
.NET | net5.0 was computed. net5.0-windows was computed. net6.0 was computed. 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. |
.NET Core | netcoreapp2.0 was computed. netcoreapp2.1 was computed. netcoreapp2.2 was computed. netcoreapp3.0 was computed. netcoreapp3.1 was computed. |
.NET Standard | netstandard2.0 is compatible. netstandard2.1 was computed. |
.NET Framework | net461 was computed. net462 was computed. net463 was computed. net47 was computed. net471 was computed. net472 was computed. net48 was computed. net481 was computed. |
MonoAndroid | monoandroid was computed. |
MonoMac | monomac was computed. |
MonoTouch | monotouch was computed. |
Tizen | tizen40 was computed. tizen60 was computed. |
Xamarin.iOS | xamarinios was computed. |
Xamarin.Mac | xamarinmac was computed. |
Xamarin.TVOS | xamarintvos was computed. |
Xamarin.WatchOS | xamarinwatchos was computed. |
-
.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 | 374 | 12/29/2020 |