Tengo una clase y cuando intento usarla en otra clase, recibo el siguiente error. using System; using System.Collections.Generic; using System.Linq; namespace MySite { public class Reminders { public Dictionary<TimeSpan, string> TimeSpanText { get; set; } // We are setting the...
