c sharp enum class

94

c sharp enum class -

enum year
{
    // items of the enum
    January,
    February,
    March,
    April,
    May,
    June
}

Comments

Submit
0 Comments