EnumWithValues 1.0.8

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

// Install EnumWithValues as a Cake Tool
#tool nuget:?package=EnumWithValues&version=1.0.8

EnumWithValues

C# enum(like) with non-integer type casts (by source generator)

Concept

It is difficult to handle enums in relation to non-integer types, but there is a classic workaround that makes handling them convenient by pseudo-handling them with structs. EnumWithValues uses a source generator to make this workaround convenient and fast to use.

Install

EnumWithValues can be installed and used from nuget.

Because EnumWithValues uses a source generator, you need to restart Visual Studio once after installation.

Usage

Use [EnumWithValues(structName)] and [EnumValue(params string[] values)] attribute like below.

[EnumWithValues("Foo", convertEnumValue: true, throwIfCastFails: false)]
public enum FooEnum {
    [EnumValue("OK")]
    OK = 200,
    [EnumValue("No Content")]
    No_Content = 204,
}

then source generator builds enum like Foo struct.

Foo.No_Content == 204

basic example

using EnumWithValues;

namespace MyApp {
    [EnumWithValues("StatusCode")]
    public enum StatusCodeEnum {
        [EnumValue("OK")]
        OK = 200,
        [EnumValue("No Content")]
        No_Content = 204,
    }

    public class Response_StructBase {
        public StatusCode StatusCode { get; set; }
        public StatusCodeEnum StatusCodeEnum { get => StatusCode; set => StatusCode = value; }
    }

    public class Response_EnumBase {
        public StatusCode StatusCode { get => StatusCodeEnum; set => StatusCodeEnum = value; }
        public StatusCodeEnum StatusCodeEnum { get; set; }
    }

    [TestClass]
    public class MyAppTest {
        [TestMethod]
        public void StructBase() {
            var res = new Response_StructBase { StatusCode = 200 };
            Assert.IsTrue(res.StatusCode == res.StatusCodeEnum);
            Assert.IsTrue(res.StatusCode == "OK");
            Assert.IsTrue(res.StatusCode == 200);
            Assert.IsTrue(res.StatusCode == StatusCode.OK);
            Assert.IsTrue(res.StatusCode == StatusCodeEnum.OK);
        }

        [TestMethod]
        public void EnumBase() {
            var res = new Response_EnumBase { StatusCode = 200 };
            Assert.IsTrue(res.StatusCode == res.StatusCodeEnum);
            Assert.IsTrue(res.StatusCode == "OK");
            Assert.IsTrue(res.StatusCode == 200);
            Assert.IsTrue(res.StatusCode == StatusCode.OK);
            Assert.IsTrue(res.StatusCode == StatusCodeEnum.OK);
        }
    }
}

with multiple values

[EnumWithValues("Foo", convertEnumValue: false)] // do `convertEnumValue = false` when you use [EnumValue(int)]
public enum FooEnum {
    [EnumValue("A", 'a', 1)] // Foo.One == "A" && Foo.One == 'A' && Foo.One == 1
    One,
    [EnumValue("B", 'b', 2)] // MUST: same types order
    Two,
}

switch

Foo is an instance, while switch case only accepts const. Therefore, this workaround is necessary.

var myEnum = MyEnum.Foo;
switch (myEnum.AsEnum) {
    case MyEnum.Enum.Foo:
        return true;
}

Limitations

These limitations are caused by the fact that I don't know much about code scanning in Roslyn.

Pull Request welcome !!!

enum type

ulong enum value > long not supported.

License

Zlib License

There are no supported framework assets in this package.

Learn more about Target Frameworks and .NET Standard.

  • .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.8 637 12/30/2020
1.0.7 368 12/30/2020
1.0.6 399 12/28/2020
1.0.5 335 12/28/2020
1.0.4 342 12/28/2020
1.0.3 353 12/28/2020
1.0.2 353 12/28/2020
1.0.1 374 12/28/2020
1.0.0 326 12/28/2020