Skip to content

Instantly share code, notes, and snippets.

View mharasimowicz's full-sized avatar

mharasimowicz

View GitHub Profile
@mharasimowicz
mharasimowicz / pipes.cs
Last active November 19, 2017 10:27
Piping operator example
using System;
using System.Linq.Expressions;
namespace FuncPipeExample
{
class PipeableFunc<TResult>
{
internal readonly Func<TResult> _funcInstance;
public PipeableFunc(Func<TResult> funcInstance) =>