Skip to content

Instantly share code, notes, and snippets.

View Tamschi's full-sized avatar
🃏
Increasingly doing a little of everything

Tamme Schichler Tamschi

🃏
Increasingly doing a little of everything
View GitHub Profile
@Tamschi
Tamschi / Program.cs
Created October 18, 2013 08:33
Automatic and manual dynamic dispatch. The automatic version doesn't work with invisible types.
using System;
using System.Collections.Generic;
using System.Reflection;
using System.Reflection.Emit;
namespace DynamicDispatch
{
class Base { }
class Generic<T> : Base { }