Ejemplo n.º 1
0
        public void TestWithMethodWithGenericReturnType()
        {
            Func <int, int> f = a => {
                var c = new C5 <int> {
                    t = a
                };
                return(c.Get());
            };

            this.Test(f);
        }