pilic83.EnumStrategyWrapper 1.0.0

dotnet add package pilic83.EnumStrategyWrapper --version 1.0.0
NuGet\Install-Package pilic83.EnumStrategyWrapper -Version 1.0.0
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="pilic83.EnumStrategyWrapper" Version="1.0.0" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add pilic83.EnumStrategyWrapper --version 1.0.0
#r "nuget: pilic83.EnumStrategyWrapper, 1.0.0"
#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 pilic83.EnumStrategyWrapper as a Cake Addin
#addin nuget:?package=pilic83.EnumStrategyWrapper&version=1.0.0

// Install pilic83.EnumStrategyWrapper as a Cake Tool
#tool nuget:?package=pilic83.EnumStrategyWrapper&version=1.0.0

EnumStrategyWrapper

An enumeration strategy wrapper that allows to avoid changing the switch block when you add a new member to an enum. All you need to do is decorate the enum with the WrapEnum attribute class and define StrategyProperties or StrategyExecutions (or both) as an array of strings containing the property names of properties that have different values for different enum members. Ditto for StrategyExecutions - an array of strings containing method names of methods that have different implementations for different enum members.<br /> <br /> [WrapEnum(StrategyProperties = new[] { "AccessLevel", "Info"}, StrategyExecutions = new[] { "ShowMessage" })]<br /> public enum User<br /> {<br /> Standard,<br /> Author,<br /> Administrator<br /> }<br /> AccessLevel and Info property have different values for different members of User, and ShowMessage has different implementation for different members of User.<br /> Added property and methods we have to add in some Helper class and again decorate added properties and added methods with atribute classes MemberProperties or MemberExecutions. Both have three arguments - enumName, enumMember which is name of enum and name of member of that enum and finaly strategyProperty or strategyExecutions depends of atribute class whitch is name of properti or method from StrategyProperties or StrategyExecutions from WrapEnum. That is how we link properties or method in helpers class with specifications of enum members. <br /> <br /> [MemberProperties("User", "Author", "AccessLevel")]<br /> object? UserAuthorAccessLevel<br /> {<br /> get ⇒ 1;<br /> }<br /> "User" is enum name, "Author" is member name in User enum and "AccessLevel" is added property for User from StrategyProperties array. Now we linked UserAuthorAccessLevel property with AccessLevel property. In other case AccessLevel will return default value.<br /> Pay attention that added property is always object?.<br /> <br /> [MemberExecutions("User", "Standard", "ShowMessage")]<br /> object? UserStandardShowMessage(params object?[]? args)<br /> {<br /> if (args is null) return default!;<br /> if (args.FirstOrDefault() is null) return default!;<br /> string message = args.FirstOrDefault().ToString();<br /> Console.WriteLine(message);<br /> return default!;<br /> }<br /> Same as previous - "User" is enum name, "Author" is member name in User enum and "ShowMessage" is added method for User from StrategyExecutions array. Now we linked UserStandardShowMessage method with ShowMessage method. In other case ShowMessage will do nothing and return default value.<br /> Pay attention that added method is always returns object? and has parameter as params object?[]? args .<br /> <br /> Finally after that source generator will do everything for us. We just have to use generated classes.<br /> var authorUser = UserStrategy.Author;<br /> userAccessLevel = authorUser.AccessLevel is null ? 0 : (int)authorUser.AccessLevel;<br /> authorUser.ShowMessage(authorUser.Info);<br /> authorUser.ShowMessage($"Author user acess level is {userAccessLevel}.");<br /> UserStrategy class wil be generated with source code generator and it contains readonly properties that map enum members, and that properties are classes derived from UserStrategy and they contain added properties and methods that we defined with attributes.

There are no supported framework assets in this package.

Learn more about Target Frameworks and .NET Standard.

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 218 4/1/2023