vote up 7 vote down star
1

Came across the following line in the Composite Application Guidelines.

I know the => is a lambda but what does the () mean?

What are some other examples of this?

What is it called so I can search for it?

this.regionViewRegistry.RegisterViewWithRegion(RegionNames.SelectionRegion
        , () => this.container.Resolve<EmployeesListPresenter>().View);
flag

1  
So it's true. C# is turning into Perl! – rjh Mar 10 at 14:21

3 Answers

vote up 19 vote down check

It's a lambda expression that takes 0 arguments

http://msdn.microsoft.com/en-us/library/bb397687.aspx

link|flag
vote up 12 vote down

If you look at x => x + 1

It takes a parameter x and returns x incremented by one. The compiler will use type inference to deduct that x is probably of type int and will return another int so you have a lambda that takes a parameter x of type int and returns an integer.

() => 3;

is the same but doesn't take a parameter, it will return an integer.

() => Console.Writeln("hello")

Will result in a void method with no parameters.

link|flag
vote up 8 vote down

That's an empty argument list, meaning the lambda expression takes no arguments.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.