What is the difference between <out T> and <T>? For example:

public interface IExample<out T>
{
    ...
}

vs.

public interface IExample<T>
{
    ...
}

5 Answers
5

Leave a Reply

Your email address will not be published. Required fields are marked *