Where is the best place to locate enum types?

前端 未结 10 2086
自闭症患者
自闭症患者 2020-12-25 11:16

I have found that there is generally a singe type or namespace that takes in any particular enum as a parameter and as a result I have always defined those enums there. Rece

10条回答
  •  小蘑菇
    小蘑菇 (楼主)
    2020-12-25 11:55

    What environment?

    In .NET I usually create an empty class file, rename it to MyEnum or whatever to indicate it holds my enum and just declare it in there.

提交回复
热议问题