예제 #1
0
        public void MethodCallWithLambdaWithMultipleParameter()
        {
            var o = new SimpleObjectPropertyStringTest();

            Test(() => o.Lambda((f, x) => one + 2), "o.Lambda((f, x) => one + 2)");
        }
예제 #2
0
        public void MethodCallWithLambda()
        {
            var o = new SimpleObjectPropertyStringTest();

            Test(() => o.Lambda(() => one + 2), "o.Lambda(() => one + 2)");
        }