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
You can't do this with enums, but you can do it like that:
public static class SeparatorChars { public static string Comma = ","; public static string Tab = "\t"; public static string Space = " "; }