Saw this signature today:
public interface ISomeInterface<in T>
What impact does the in parameter have?
in
You could read about generic variance and contravariance introduced in .NET 4.0. The impact that the in keyword has on the interface is that it declares it as contravariant meaning that T can only be used as input method type. You cannot use it as return type on the methods of this interface. The benefit of this is that you will be able to do things like this (as shown in the aforementioned article):
T
interface IProcessor<in T> { void Process(IEnumerable<T> ts); } List<Giraffe> giraffes = new List<Giraffe> { new Giraffe() }; List<Whale> whales = new List<Whale> { new Whale() }; IProcessor<IAnimal> animalProc = new Processor<IAnimal>(); IProcessor<Giraffe> giraffeProcessor = animalProc; IProcessor<Whale> whaleProcessor = animalProc; giraffeProcessor.Process(giraffes); whaleProcessor.Process(whales);
1.4m articles
1.4m replys
5 comments
57.0k users