I am trying to define an Enum and add valid common separators which used in CSV or similar files. Then I am going to bind it to a ComboBox as a dat
Enum
ComboBox
What I have recently begun doing is using Tuples
public static (string Fox, string Rabbit, string Horse) Animals = ("Fox", "Rabbit", "Horse"); ... public static (string Comma, string Tab, string Space) SeparatorChars = (",", "\t", " ");