I have a enum, lets call it A
public enum A
{
A,
B
}
I have a function that takes a enum A
public void functionA(A enumA)
{
//do something
}
How can I create another enum, possibly call B that I can pass to functionA. Something like this?
public enum B
{
C
}
functionA(B.C);
I know that you cant extend a enum, but what other options do I have available? What is the best way to achieve this?
functionAtakes anAparameter is because it specifically expects only those values. Suppose you could somehow trick it into taking another value from an extended enum. How would the function know what to do with it? – Karl Knechtel Jun 28 '11 at 18:43