Convert list <Enum> to list <string>
3 answers
Perhaps it:
var str = String.Join(", ", SupportedNotificationMethods.Select(s => s.ToString())); You can learn more about the String.Join method on MSDN . Older versions of String.Join do not have an overload that accepts IEnumerable . In this case, just call ToArray() after the selection.
+12