sorry for asking this question but i didn't found the right solution for this task:
I've got a Enum, which is named "myEnum" (MyEnum isn't known by the function)
I Need to get the int value of a Value of myEnum
Example:
A Programmer named its enum "myEnum":
public enum myEnum
{
foo = 1,
bar = 2,
}
my function should do the following:
Get the Value of "foo" of "myEnum" by string
function should opened by:
public int GetValueOf(string EnumName, string EnumConst)
{
}
so when Programmer A opens it by :
int a = GetValueOf("myEnum","foo");
it should return 1
and when Programmer B has an Enum named "mySpace", wants to return "bar" with Value 5
int a = GetValueOf("mySpace","bar")
should return 5
how can i do this?
See Question&Answers more detail:
os 与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…