Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
C# で逆列挙型または定数ファイルを実装する方法はありますか? リストから ID を取得しており、定数文字列をこの ID にマップしたいと考えています。私は次のようなことを考えていました:
レギュラーenum:
enum
public enum StaticUser { DB = 1, Order = 2 }
私が必要とするもの:
public enum StaticUser { 1 = DB, 2 = Order }