This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
public class MyEnum | |
{ | |
public static readonly MyEnum Val1; | |
public static readonly MyEnum Val2; | |
public static MyEnum FromId(int id) | |
{ | |
return MyEnumsById[id]; | |
} |