using System.Collections.Generic;
public static void Main()
var destinations = new List<TVEyesEditorDestination>() { TVEyesEditorDestination.Archive };
destinations.Add(TVEyesEditorDestination.Download);
var output = String.Join(",", destinations.Select(d => (int)d).ToArray());
Console.WriteLine(output);
public enum TVEyesEditorDestination : int