Enums in C# on November 07, 2023 Get link Facebook X Pinterest Email Other Apps An enum is a user defined datatype that has a fixed set of related valuese.g. enum Months { May, // 0 June, // 1 July. // 2}Months.May returns May(int)Months.June returns 1 Comments
Comments
Post a Comment