How to assign string values to enums and use that value in a switch

后端 未结 10 1651
小鲜肉
小鲜肉 2021-02-02 10:45

Basically a series of titles will be passed into the switch statement and I need to compare them against the string values of the enum. But I have little to no idea how to do th

10条回答
  •  死守一世寂寞
    2021-02-02 11:14

    I believe the standard way to do this is to use a static class with readonly string properties that return the value you want.

提交回复
热议问题