Creating list of hours separated by 30 min in C# – Asp.net
I am trying to create this list in c#, add this is what I am at now public static List<string> GetCurrentTime() { var start = DateTime.Today; List<string> L = new List<string>(); var clockQuery = from offset in Enumerable.Range(0, 48) select…