在枚举中搜索字符串数组,如果可用,则返回 true
本文关键字:返回 true 如果 搜索 字符串 数组 枚举 | 更新日期: 2023-09-27 17:55:32
我有一个枚举:
[Flags]
public enum MyColours{
Red = 1,
Green = 2,
Blue = 4,
Yellow = 8,
Orange = 16,
};
现在我有一个字符串列表:
string[] colour = new string { "Red", "Orange", "Blue"};
我希望能够为与枚举匹配的马镫返回 true。
这个问题很糟糕。
我想你想看看枚举中的值是否与参数匹配,并返回对该参数的真正依赖?
bool IsInsideEnum(string value) {
foreach (var enumVal in Enum.GetValues(typeof(MyColors))
if(Enum.GetName(typeof(MyColors), enumVal) == value)
return true;
return false;
}
你的问题真的很模糊。但我假设你的意思是这样的
if (colour[0] == Enum.GetName(typeof(MyColors), 1)) //"Red" == "Red"
{
return true;
}
Enum.GetName(typeof(MyColors), 1)
就是您要找的
typeof(enumName) 后跟 enumIndex
List<string> colour = new List<String>{ "Red", "Orange", "Blue" };
List<string> enumColors = Enum.GetNames(typeof(MyColours)).ToList();
foreach (string s in enumColors)
{
if (colour.Exists(e => e == s))
return true;
else
return false;
}
希望这有帮助
使用 Enum.GetName(Enum,int)
获取枚举的字符串
您可以使用
Enum.TryParse
方法,如下所示:
MyColours c;
from s in colour select new {Value = s, IsAvailable = Enum.TryParse(s, true, out c)}
或者,您可以执行一个loop
并使用该方法为数组中的每个值计算出来。
更好的答案 - 不那么冗长:
var values = Enum.GetNames(typeof(MyColours)).ToList();
string[] colour = new string[] { "Red", "Orange", "Blue" };
List<string> colourList = colours.ToList();
ConatainsAllItems(values, colourList);
public static bool ContainsAllItems(List<T> a, List<T> b)
{
return !b.Except(a).Any();
}
如果它们具有匹配的值,则应返回 true
非常直接,为此Enum.IsDefined
:
string[] colour = new string[] { "Red", "Orange", "Blue", "White" };
var result = colour
.Select(c => Enum.IsDefined(typeof(MyColours), c));
测试
// True, True, True, False
Console.Write(String.Join(", ", result));
试试这个,
foreach(string s in colour)
{
Enum.GetNames(typeof(MyColours)).Contains(s);
}