Enum to String
TypeScript export enum MyPhone { Apple = <any>"Apple", HTC = <any>"HTC", Sony = <any>"Sony" } var text = MyPhone.Apple.toString(); C# public enum MyPhone { [Display(Name = "Apple")] Apple, [Display(Name = "HTC")] HTC, [Display(Name = "Sony")] Sony, } var text...
Continue Reading