Skip to content

Instantly share code, notes, and snippets.

@mookid8000
Created April 6, 2011 05:48
Show Gist options
  • Save mookid8000/905204 to your computer and use it in GitHub Desktop.
Save mookid8000/905204 to your computer and use it in GitHub Desktop.
Subscribe to types discovered via reflection
foreach(var derivedMessageType in GetAllMessageTypes().Where(t => typeof(IBaseMessage).IsAssignableFrom(t))
{
bus.GetType().GetMethod("Subscribe").MakeGenericMethod(derivedMessageType).Invoke(bus, new object[0]);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment