Sometimes when reading others\' C# code I see a method that will accept multiple enum values in a single parameter. I always thought it was kind of neat, but never looked in
Something of this nature should show what you are looking for:
[Flags] public enum SomeName { Name1, Name2 } public class SomeClass() { public void SomeMethod(SomeName enumInput) { ... } }