最佳答案
假设我有一个类型脚本 enum
,MyEnum
,如下所示:
enum MyEnum {
First,
Second,
Third
}
在 TypeScript0.9.5中,生成 enum
值数组的最佳方法是什么? 示例:
var choices: MyEnum[]; // or Array<MyEnum>
choices = MyEnum.GetValues(); // plans for this?
choices = EnumEx.GetValues(MyEnum); // or, how to roll my own?