I have an enum, let\'s call it A:
public enum A { A, B }
I have a function that takes an enum A:
public void functi
You should add item C to your enum A. If it's something unrelated and adding it doesn't make sense, functionA() probably shouldn't be the one to handle it.