Skip to content

Instantly share code, notes, and snippets.

@mxmissile
Created February 11, 2011 23:46
Show Gist options
  • Save mxmissile/823283 to your computer and use it in GitHub Desktop.
Save mxmissile/823283 to your computer and use it in GitHub Desktop.
public object GetService(Type serviceType)
{
try
{
return container.Resolve(serviceType);
}
catch
{
return null;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment