0
kicks
Share anonymous types between functions
The first step is to create a seemingly innocent method:
public static T CastByExample<T>(this object o, T example)
{
return (T) o;
}
Seems innocent enough right?