The curious lack of type inference support in C# constructors

Yan Cui

I help clients go faster for less using serverless technologies.

Given a generic class in C# like this one:

public class MyType<T>
{
    public MyType(T value) { }
}

You will need to specify what the type T should be when you call the constructor:

var myObj = new MyType<int>(42);

The compiler is not able to use type inference to infer the type T to be int.

Now, this is interesting as type inference is supported by any other generic method, so if you were to create a factory class for MyType<T> you could indeed make use of type inference like this:

public class MyTypeFactory
{
    public static MyType<T> Create<T>(T value)
    {
        return new MyType<T>(value);
    }
}
...
var myObj = MyTypeFactory.Create(42); // returns MyType<int>

Some argue that it’s not possible because of the possible presence of other overloaded constructors (or for that matter a non-generic version of MyType), but at the end of the day the constructor is a method like any other and the cited ambiguity can also appear with normal generic methods:

public void Foo(short value) {}
public void Foo(int value) {}
public void Foo(long value) {}
public void Foo(double value) {}
public void Foo<T>(T value) {}
…
Foo(42); // which Foo is called? Foo(int) of course!

So amidst all that ambiguity the compiler is able to infer the type for the Foo method, so what’s so special about the constructor? Am I missing something obvious here?

Luckily, as Eric Lippert stated in his answer to my question here, the reason the constructor does not support type inference is a practical one – the benefit of the feature does not out-weight the cost of its implementation and it is some way behind other possible features in terms of priority. Whilst he did say that this feature is on the list, considering that the ‘theme’ of the next C# release (5.0) is rumoured to be meta-programming, there’s a good chance we won’t be seeing type inference in the C# constructor for some time yet!

References:

Jon Skeet’s Brainteasers + Answers

StackOverflow question – why can’t the C# constructor infer type


 

Whenever you’re ready, here are 4 ways I can help you:

  1. If you want a one-stop shop to help you quickly level up your serverless skills, you should check out my Production-Ready Serverless workshop. Over 20 AWS Heroes & Community Builders have passed through this workshop, plus 1000+ students from the likes of AWS, LEGO, Booking, HBO and Siemens.
  2. If you want to learn how to test serverless applications without all the pain and hassle, you should check out my latest course, Testing Serverless Architectures.
  3. If you’re a manager or founder and want to help your team move faster and build better software, then check out my consulting services.
  4. If you just want to hang out, talk serverless, or ask for help, then you should join my FREE Community.

 


Leave a Comment

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