如果我想在两个Enum
类型之间进行转换,我希望它们的值具有相同的名称,是否有一个简洁的方法,或者我必须这样做:
enum colours_a { red, blue, green }
enum colours_b { yellow, red, blue, green }
static void Main(string[] args)
{
colours_a a = colours_a.red;
colours_b b;
//b = a;
b = (colours_b)Enum.Parse(typeof(colours_b), a.ToString());
}
答案 0 :(得分:6)
如果您严格控制两个枚举,那么您的解决方案(或Randolpho's)就可以了。
如果你不这样做,那么我会跳过尝试变得棘手并创建一个在它们之间进行转换的静态映射类。事实上,无论如何,我可能会建议(从现在开始按照名称进行映射),从易于维护的角度来看。
答案 1 :(得分:3)
你也可以这样做,不知道它是否足够整洁:
enum A { One, Two }
enum B { Two, One }
static void Main(string[] args)
{
B b = A.One.ToB();
}
这当然需要一种扩展方法:
static B ToB(this A a)
{
switch (a)
{
case A.One:
return B.One;
case A.Two:
return B.Two;
default:
throw new NotSupportedException();
}
}
答案 2 :(得分:2)
使用此方法(根据需要将变量封装到新类中):
class Program
{
enum colours_a { red, green, blue, brown, pink }
enum colours_b { yellow, red, blue, green }
static int?[] map_a_to_b = null;
static void Main(string[] args)
{
map_a_to_b = new int?[ Enum.GetValues(typeof(colours_a)).Length ];
foreach (string eachA in Enum.GetNames(typeof(colours_a)))
{
bool existInB = Enum.GetNames(typeof(colours_b))
.Any(eachB => eachB == eachA);
if (existInB)
{
map_a_to_b
[
(int)(colours_a)
Enum.Parse(typeof(colours_a), eachA.ToString())
]
=
(int)(colours_b)
Enum.Parse(typeof(colours_b), eachA.ToString());
}
}
colours_a a = colours_a.red;
colours_b b = (colours_b) map_a_to_b[(int)a];
Console.WriteLine("Color B: {0}", b); // output red
colours_a c = colours_a.green;
colours_b d = (colours_b)map_a_to_b[(int)c];
Console.WriteLine("Color D: {0}", d); // output green
Console.ReadLine();
colours_a e = colours_a.pink;
// fail fast if e's color don't exist in b, cannot cast null to value type
colours_b f = (colours_b)map_a_to_b[(int)e];
Console.WriteLine("Color F: {0}", f);
Console.ReadLine();
}// Main
}//Program