Welcome to the Treehouse Community

Want to collaborate on code errors? Have bugs you need feedback on? Looking for an extra set of eyes on your latest project? Get support with fellow developers, designers, and programmers of all backgrounds and skill levels here with the Treehouse Community! While you're at it, check out some resources Treehouse students have shared here.

Looking to learn something new?

Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and join thousands of Treehouse students and alumni in the community today.

Start your free trial

C# Querying With LINQ Functional Programming in C# Actions and Funcs

Joshua C
Joshua C
51,696 Points

Using an anonymous method to assign a delegate to an action (task 2 of 3).

Not sure exactly what I'm supposed to do in this situation.

What am I doing wrong in my code?

Thank you.

Program.cs
using System;

namespace Treehouse.CodeChallenges
{
    public class Program
    {
        public Func<int, int> Square = delegate (int number)
        {
            return number * number;
        };

        Action<int, Func<int, int>> DisplayResult;

        DisplayResult = delegate (int result, Func<int, int> operation)
        {
        };

        static void Main(string[] args)
        {
        }
    }
}

2 Answers

Steven Parker
Steven Parker
229,732 Points

You seem to have all the right stuff there, but you've split it up into two steps.

:point_right: Just combine everything into one step.

P.S. I see you got a response directly from the instructor as I was entering this one!