Skip to content

Instantly share code, notes, and snippets.

@kkozmic
Created October 21, 2010 11:00
Show Gist options
  • Save kkozmic/638292 to your computer and use it in GitHub Desktop.
Save kkozmic/638292 to your computer and use it in GitHub Desktop.
public class FirstArgumentIsServiceSelector:DefaultTypedFactoryComponentSelector
{
protected override Type GetComponentType(MethodInfo method, object[] arguments)
{
return (Type)arguments.Single();
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment