Błąd 7, argument 1: nie można przekonwertować z „” na „”

Dostrzegam błąd, którego wcześniej nie widziałem. Mam nadzieję, że ktoś może pomóc.

Oto mój kod:

public class MyT
{
    public int ID { get; set; }
    public MyT Set(string Line)
    {
        int x = 0;

        this.ID = Convert.ToInt32(Line);

        return this;
    }
}

public class MyList<T> : List<T> where T : MyT, new()
{
    internal T Add(T n)
    {
        Read();
        Add(n);
        return n;
    }
    internal MyList<T> Read()
    {
        Clear();
        StreamReader sr = new StreamReader(@"../../Files/" + GetType().Name + ".txt");
        while (!sr.EndOfStream)
            Add(new T().Set(sr.ReadLine())); //<----Here is my error!
        sr.Close();
        return this;
    }
}

public class Customer : MyT
{
    public int ID { get; set; }
    public string FirstName { get; set; }
    public string LastName { get; set; }
}

public class Item : MyT
{
    public int ID { get; set; }
    public string Category { get; set; }
    public string Name { get; set; }
    public double Price { get; set; }
}

public class MyClass
{
    MyList<Customer> Customers = new MyList<Customer>();
    MyList<Item> Items = new MyList<Item>();
}

Na linii, która mówi: „Dodaj (nowy T (). Set (sr.ReadLine ()))”; Otrzymuję „Błąd 7, Argument 1: nie można przekonwertować z„ Simple_Reservation_System.MyT ”na„ T ”. Czy ktoś może mi pomóc to naprawić?

questionAnswers(3)

yourAnswerToTheQuestion