按值列出的枚举索引

发布于 2024-08-04 17:21:04 字数 206 浏览 6 评论 0原文

 [FlagsAttribute]
public enum Colors { Red = 1, Green = 2, Blue = 4, Yellow = 8 };

我有一个枚举如图所示。我希望能够获得说 Colors.Blue 位于索引 2,索引从 0 开始的能力。我想获得传入 Colors 的索引号。无论如何?有人可以给我发一些片段吗...

 [FlagsAttribute]
public enum Colors { Red = 1, Green = 2, Blue = 4, Yellow = 8 };

I have an enum as show. I want the ability to get say Colors.Blue is at index 2, index staring from 0.I want to get the index number passing in Colors.Whatever? Can someone post me some snippets...

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(7

陌若浮生 2024-08-11 17:21:04

试试这个:

int index  = Array.IndexOf(Enum.GetValues(typeof(Colors )), Colors.Green);

Try this one:

int index  = Array.IndexOf(Enum.GetValues(typeof(Colors )), Colors.Green);
海夕 2024-08-11 17:21:04

假设每种颜色使用单个位作为值,您只需找到该位的索引即可。

public int GetIndex(Colors color) {
   int value = (int)colors;
   int index = 0;
   while (value > 0) {
      value >>= 1;
      index++;
   }
   return index;
}

请注意,位索引通常是从零开始的,但这里您得到的是从一开始的索引。

如果您想要一个从零开始的索引,您将得到蓝色的索引二,而不是问题中所述的三。如果这是您想要的结果,请从 index = -1; 开始。

Assuming that each color uses a single bit as value, you can just locate the index of that bit.

public int GetIndex(Colors color) {
   int value = (int)colors;
   int index = 0;
   while (value > 0) {
      value >>= 1;
      index++;
   }
   return index;
}

Note that the index of bits is normally zero based, but here you get a one based index.

If you want a zero based index, you would get the index two for blue, not three as you stated in the question. Just start with index = -1; if that is the result that you desire.

静谧幽蓝 2024-08-11 17:21:04

不太明白你的问题,但你的意思是这样的:

var blue = (Colors)Enum.GetValues(typeof(Colors))[2];

Can't really understand your question, but is this what you mean:

var blue = (Colors)Enum.GetValues(typeof(Colors))[2];
往日 2024-08-11 17:21:04

我不知道你为什么需要它,但一种方法是

 Colors c = (Colors)Enum.Parse(typeof(Colors), Enum.GetNames(typeof(Colors))[index]);

I don't know why you need it , but one way to do that is

 Colors c = (Colors)Enum.Parse(typeof(Colors), Enum.GetNames(typeof(Colors))[index]);
肤浅与狂妄 2024-08-11 17:21:04

这是我发现的最简单的解决方案。与标志一起工作正常,无需担心字节操作。

Array eVals = Enum.GetValues(typeof(MyEnum));
MyEnum eVal = (MyEnum)eVals.GetValue(iIndex);

This is the easiest solution I found. Works fine with flags w/o bothering with bytes operations.

Array eVals = Enum.GetValues(typeof(MyEnum));
MyEnum eVal = (MyEnum)eVals.GetValue(iIndex);
挽袖吟 2024-08-11 17:21:04

我这样做后得到了这个工作:

return (Status)Enum.GetValues(typeof(Status)).GetValue(this.EvaluationStatusId);

I got this working after doing it like this:

return (Status)Enum.GetValues(typeof(Status)).GetValue(this.EvaluationStatusId);
烙印 2024-08-11 17:21:04

我正在使用以下代码,并且它正在工作:

 int index=(int)Enum.Parse(typeof(Colors), "Green");

I am using the following code, and it is working:

 int index=(int)Enum.Parse(typeof(Colors), "Green");
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文