Covariance and Contravariance FAQ

In this post I’ll try to answer the most common questions I find on forums and in documentation feedback about C# covariance and contravariance. It’s a big topic for a single blog post, so expect to see a lot of “more information” links.

Special thanks to Eric Lippert and Chris Burrows for reviewing and providing helpful comments.

What are covariance and contravariance?

In C#, covariance and contravariance enable implicit reference conversion for array types, delegate types, and generic type arguments.Covariance preserves assignment compatibility and contravariance reverses it.

The following code demonstrates the difference between assignment compatibility, covariance, and contravariance.

// Assignment compatibility.
string str = "test";
// An object of a more derived type is assigned to an object of a less derived type.
object obj = str;

// Covariance.
IEnumerable<string> strings = new List<string>();
// An object that is instantiated with a more derived type argument
// is assigned to an object instantiated with a less derived type argument.
// Assignment compatibility is preserved.
IEnumerable<object> objects = strings;

// Contravariance.           
// Assume that I have this method:
// static void SetObject(object o) { }
Action<object> actObject = SetObject;
// An object that is instantiated with a less derived type argument
// is assigned to an object instantiated with a more derived type argument.
// Assignment compatibility is reversed.
Action<string> actString = actObject;

In C#, variance is supported in the following scenarios:

  1. Covariance in arrays (since C# 1.0)
  2. Covariance and contravariance in delegates, also known as “method group variance” (since C# 2.0)
  3. Variance for generic type parameters in interfaces and delegates (since C# 4.0)

What is array covariance?

Arrays are covariant since C# 1.0. You can always do the following:

object[] obj = new String[10];

In the above code, I assigned an array of strings to an array of objects. So I used a more derived type than that originally specified, which is covariance.
Covariance in arrays is considered “not safe,” because you can also do this:

obj[0] = 5;

This code compiles, but it throws an exception at run time because obj is in fact an array of strings and cannot contain integers.

What is delegate, or method group, variance?

This feature was added in C# 2.0. When you instantiate a delegate, you can assign it a method that has a more derived return type than that specified in the delegate (covariance). You can also assign a method that has parameter types less derived than those in the delegate (contravariance).

Here’s a quick code example illustrating the feature and some of its limitations.

static object GetObject() { return null; }
static void SetObject(object obj) { }

static string GetString() { return ""; }
static void SetString(string str) { }

static void Main()
{
    // Covariance. A delegate specifies a return type as object,
    // but I can assign a method that returns a string.
    Func<object> del = GetString;

    // Contravariance. A delegate specifies a parameter type as string,
    // but I can assign a method that takes an object.
    Action<string> del2 = SetObject;

    // But implicit conversion between generic delegates is not supported until C# 4.0.
    Func<string> del3 = GetString;
    Func<object> del4 = del3; // Compiler error here until C# 4.0.
}

By the way, this feature works for all delegates, both generic and non-generic, not just for Func and Action delegates.

For more information and examples, see Covariance and Contravariance in Delegates on MSDN and Eric Lippert’s post Covariance and Contravariance in C#, Part Three: Method Group Conversion Variance.

What is variance for generic type parameters?

This is a new feature in C# 4.0. Now, when creating a generic interface, you can specify whether there is an implicit conversion between interface instances that have different type arguments. For example, you can use an interface instance that has methods with more derived return types than originally specified (covariance) or that has methods with less derived parameter types (contravariance). The same rules are applied to generic delegates.

While you can create variant interfaces and delegates yourself, this is not the main purpose for this feature. What is more important is that a set of interfaces and delegates in .NET Framework 4 have been updated to become variant.
Here’s the list of updated interfaces:

And the list of updated delegates:

The most frequent scenario for most users is expected to be something like this one:

IEnumerable<Object> objects = new List<String>();

While this code doesn’t look that impressive, it allows you to reuse a lot of methods that accept IEnumerable objects.

class Program
{
    // The method has a parameter of the IEnumerable<Person> type.
    public static void PrintFullName(IEnumerable<Person> persons)
    {
        // The method iterates through a sequence and prints some info.
    }

    public static void Main()
    {
        List<Employee> employees = new List<Employee>();

        // I can pass List<Employee>, which is in fact IEnumerable<Employee>,
        // although the method expects IEnumerable<Person>.
        PrintFullName(employees);
    }
}

A couple of important rules to remember:

  • This feature works only for generic interfaces and delegates. If you implement a variant generic interface, the implementing class is still invariant. Classes and structs do not support variance in C# 4.0.
    So the following doesn’t compile:
    // List<T> implements the covariant interface
    // IEnumerable<out T>. But classes are invariant.
    List<Person> list = new List<Employee>(); // Compiler error here.
  • Variance is supported only if a type parameter is a reference type. Variance is not supported for value types.
    The following doesn’t compile either: // int is a value type, so the code doesn't compile.
    IEnumerable<Object> objects = new List<int>(); // Compiler error here.

Where can I find more examples of using covariance and contravariance?

I wrote a couple of MSDN topics that show how you can benefit from this new feature. They might help you better understand the principles of covariance and contravariance:

Also, take a look at the video How Do I: Use Covariance and Contravariance in VS 2010 Part I? by Eric Lippert.

How can I create variant generic interfaces and delegates myself?

The out keyword marks a type parameter as covariant, and the in keyword marks it as contravariant. The two most important rules to remember:

  • You can mark a generic type parameter as covariant if it is used only as a method return type and is not used as a type of formal method parameters.
  • And vice versa, you can mark a type as contravariant if it is used only as a type of formal method parameters and not used as a method return type.

For more information about variance validation, read Creating Variant Generic Interfaces and Variance in Delegates on MSDN and Eric Lippert’s post Exact rules for variance validity.

This example shows how to create a variant generic interface:

interface IVariant<out R, in A>
{
    // These methods satisfy the rules.
    R GetR();
    void SetA(A sampleArg);
    R GetRSetA(A sampleArg);

    // And these don’t.
    // A GetA();
    // void SetR(R sampleArg);
    // A GetASetR(R sampleArg);
}

If you extend a variant interface, the extending interface is invariant by default. You must explicitly specify whether the type parameters are covariant or contravariant by using the out or in keyword. Here is a quick example from MSDN:

interface ICovariant<out T> { }

// This interface is invariant because I didn't use the "out" keyword.
interface IInvariant<T> : ICovariant<T> { }

// And this one is covariant because I explicitly specified this.
interface IExtCovariant<out T> : ICovariant<T> { }

And once again, this feature is supported for generic interfaces and delegates only. So the following doesn’t compile:

class Sample<out T> { }  // Compiler error here.

For more examples, take a look at the video How Do I: Use Covariance and Contravariance in VS 2010 Part II? by Eric Lippert.

Where can I find more in-depth information about covariance and contravariance?

This is the MSDN root topic: Covariance and Contravariance.

And, of course, read Eric Lippert’s blog. He designed this feature for C# 4.0, so who knows more about it?