Covariance & Contravariance Quick Guide

Covariance and Contravariance are concerned with the ability to assign base or derived types from generic interfaces. You can think of these keywords as enabling the Liskov Substitution Principle for generic interfaces.

A common example is the IEnumerable interface. You can assign a base type from what is initialized.

        
            IEnumerable<object> vals = new List<MyClass>();
        
    

Looking at the interface, you'll see the following:

        
            public interface IEnumerable<out T> : IEnumerable
            {
                IEnumerator<T> GetEnumerator();
            }
        
    

Covariance is denoted by the "out" keyword. Contravariance uses the "in" keyword.

A few rules to remember:

  1. They only apply to generic interfaces
  2. They only use uni-directional flow

The following interface is not possible:

        
            public interface IWontWork<(out or in) T>
            {
                T MyMethod(T parameter);
            }
        
    

Generic parameters defined by either covariance or contravariance must be either returned or used as parameters--but not both.

Covariance

Covariance means applying the "out" keyword to a generic interface.

        
            public interface IMyInterface<out T>
            {
                T MyMethod();
            }
        
    

By adding this keyword we are defining a rule that states: any type returned by this method may be assigned to a base type.

Assuming we have class A, and class B that was derived from A, we could do the following:

        
            A baseType = IMyInterface<B>;
        
    

Another way to conceptualize covariance is the Task object, which is NOT covariant.

The following will not work:

        
            public async Task<IEnumerable<int>> MyMethod()
            {
                List<int> values = await GetValues();

                return values;
            }
        
    

This error will occur:

Error: CS0029 - Cannot implicitly convert type 'type' to 'type'

If we look at the Task object:

        
            public class Task<TResult> : Task
            {
                // Implementation details
            }
        
    

TResult is not defined with the "out" keyword.

To fix our method, we will need to cast our result to the exact IEnumerable type.

        
            public async Task<IEnumerable<int>> MyMethod()
            {
                List<int> values = await GetValues();

                return values.AsEnumerable();
            }
        
    
Contravariance

Contravariance is just the opposite of covariance. We can assign a base type to a derived variable.

        
            public interface IMyInterface<in T>
            {
                void MyMethod(T parameter);
            }   
        
    

If we have the following classes:

        
            public class MyBase
            {
            }
        
    

and...

        
            public class MyDerived : MyBase
            {
            }
        
    

Then we can do the following with these interfaces:

        
            IMyInterface<MyDerived> obj = new MyInterfaceImplementation<MyBase>();
        
    

The situations for using contravariance and the "in" keyword are not as robust as covariance. This is because good software is built around abstractions rather than details.

Common examples of contravariance are the IComparable and IComparer interfaces, which compare both base and derived types when sorting lists.

Conclusion

Covariance allows you to assign base types from returned derived types. Contravariance allows you to assign derived types to base type parameters. Covariance is more applicable than contravariance due to our preference for base types. If you are ever asked about these topics or the "in" and "out" keywords in an interview, simply respond with, "They allow you to apply the Liskov Substitution Principle to generic interfaces."