ardalis/SmartEnum

Doesn't seem to have support for Flags Enums

開放

#59 建立於 2019年11月27日

 (8 則留言) (3 個反應) (0 位負責人)C# (185 個分叉)github user discovery
enhancementgood first issuehelp wanted

倉庫指標

星標
 (2,420 顆星)
PR 合併指標
 (30 天內沒有已合併 PR)

描述

My team really likes this project and would like to use it for our codebase! Unfortunately, we have several flags enums and they don't seem to be compatible with this project. :(

The FromValue method throws a SmartEnumNotFoundException when given a flags enum value as well as casting a flags value.

// Given SomeEnum.A is 1 and SomeEnum.B is 2, all three throw the exception
SomeEnum.FromValue(SomeEnum.A | SomeEnum.B);
SomeEnum.FromValue(3); 
(SomeEnum)3

Also, there's no way to get the Name of multiple values with the logical OR operator like we get when the Flags attribute is placed on an enum (i.e. SomeEnum.B | SomeEnum.C => B, C).

Will this project include this support in the near future?

貢獻者指南