Calendar c = new Calendar().Fill();
var list = c.Replace(",",string.Empty).ToList();
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text.RegularExpressions;
namespace Rextester
{
public class Program
{
public static void Main(string[] args)
{
//Your code goes here
string s = "1,2,3,4,5";
var vals = s.Replace(",",string.Empty).ToList();
foreach(var i in vals)
Console.WriteLine(i);
Console.WriteLine("Hello, world!");
}
}
}