using System.Collections.Generic;
public static void Main()
var tomorrow = DateTime.Now.AddDays(1);
var list = new List<(string SkuCode, DateTime Date)>(){
var duplicateQuantities = list.GroupBy(d => new { d.SkuCode, d.Date }).Where(g => g.Count() > 1).ToList();
if (duplicateQuantities.Any())
var details = string.Join(',', duplicateQuantities.Select(g => $"SKU {g.Key} - {g.Count()} values"));
Console.WriteLine(details);