Skip to content

Instantly share code, notes, and snippets.

@SaschaHeyer
Last active December 4, 2017 12:35
Show Gist options
  • Save SaschaHeyer/dafb21a4de22cde049a1479dd325a957 to your computer and use it in GitHub Desktop.
Save SaschaHeyer/dafb21a4de22cde049a1479dd325a957 to your computer and use it in GitHub Desktop.
DefaultFirstConstructorBehavior
public class DefaultFirstConstructorBehavior : IConstructorResolutionBehavior
{
private readonly IConstructorResolutionBehavior fallbackBehavior;
public DefaultFirstConstructorBehavior(Container container)
{
this.fallbackBehavior = container.Options.ConstructorResolutionBehavior;
}
public ConstructorInfo GetConstructor(Type serviceType, Type implementationType)
{
ConstructorInfo[] constructors = implementationType.GetConstructors();
return (from constructor in constructors orderby constructor.GetParameters().Length select constructor).FirstOrDefault() ??
this.fallbackBehavior.GetConstructor(serviceType, implementationType);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment