Can we make a enum as a generic data type? If so please provide an example. Thanks in advance.
Tell me more
×
Facebook - Stack Overflow is a question and answer site for
facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community.
Facebook engineers participate here along with the best Facebook developers in the world.
If you have a technical question about Facebook, this is the best place to ask.
|
|
Enums cannot be made generic. From MSDN:
See this SO answer for an alternative. |
|||
|
|
|
No. Enums in C# have an integral base type (Int32 by default) but the items in it are always known at compile-time. There is simply no sensible way how generics might even fit into the concept of an enum. |
|||
|
|
|
You can try class enums. |
|||
|
You can pass an |
|||
|
|