Erro 7, argumento 1: não é possível converter de '' para ''

Eu estou encontrando um erro que eu não vi antes. Eu estou esperando que alguém possa ajudar.

Aqui está o meu código:

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 linha que diz: "Adicionar (new T (). Set (sr.ReadLine ()))"; Eu recebo "Erro 7, Argumento 1: não é possível converter de 'Simple_Reservation_System.MyT' para 'T'". Alguém por favor pode me ajudar a consertar isso?

questionAnswers(3)

yourAnswerToTheQuestion