Skip to content

Instantly share code, notes, and snippets.

View bittercoder's full-sized avatar
:shipit:
CTO @ Zoolibrary

Alex Henderson bittercoder

:shipit:
CTO @ Zoolibrary
View GitHub Profile
@mikeminutillo
mikeminutillo / gist:4212342
Created December 5, 2012 04:52
Dynamic Dispatch
void Main()
{
DoTheThing(1);
DoTheThing(2);
DoTheThing("Banana");
}
public static void DoTheThing(object o)
{
DoTheThingInternal((dynamic)o);