Comments on: Method I Wish Was There: PipeTo http://jrwren.wrenfam.com/blog/2010/04/20/method-i-wish-was-there-pipeto/ babblings of a computer loving fool Mon, 21 Nov 2016 19:37:12 +0000 hourly 1 https://wordpress.org/?v=4.7.2 By: zproxy http://jrwren.wrenfam.com/blog/2010/04/20/method-i-wish-was-there-pipeto/comment-page-1/#comment-31343 Wed, 21 Apr 2010 05:21:40 +0000 http://jrwren.wrenfam.com/blog/2010/04/20/method-i-wish-was-there-pipeto/#comment-31343 Comment system ate the generics 🙂

]]>
By: zproxy http://jrwren.wrenfam.com/blog/2010/04/20/method-i-wish-was-there-pipeto/comment-page-1/#comment-31342 Wed, 21 Apr 2010 05:20:49 +0000 http://jrwren.wrenfam.com/blog/2010/04/20/method-i-wish-was-there-pipeto/#comment-31342 What about this:

public static T With(this T e, Action h) where T : class
{
h(e);

return e;
}

]]>