AbstractToYield.Operators.Lambda C# (CSharp) Method

Lambda() public method

public Lambda ( ) : void
return void
        public void Lambda()
        {
            Halver h = delegate(int value) { return value / 2m; };
            h(3).Dump();
        }