I have a very basic question. In Java, it is possible to point attributes and variables to Enums, such as:
public enum DayTime{
    Morning("Morning"),
    Afternoon("Afternoon"),
    Night("Night");
    private string description;
    Daytime(string description){
        this.description = description;
    }
    public string getDescription(){
        return description;
    }
}
Is it possible to apply the same concept to C#? I am trying to get modular descriptions to products, whereas their name, contents and characteristics would be shown in a string of text, and Enums looked like the best alternative to modify this text according to which characteristic is selected.
 
     
    