C# – What Does () => Mean?

c#-3.0

I've been reading through the source code for Moq and I came across the following unit test:

Assert.Throws<ArgumentOutOfRangeException>(() => Times.AtLeast(0));

And for the life of me, I can't remember what () => actually does. I'm think it has something to do with anonymous methods or lambdas. And I'm sure I know what it does, I just can't remember at the moment….

And to make matters worse….google isn't being much help and neither is stackoverflow

Can someone give me a quick answer to a pretty noobish question?

Best Answer

Search StackOverflow for "lambda".

Specifically:

() => Console.WriteLine("Hi!");

That means "a method that takes no arguments and returns void, and when you call it, it writes the message to the console."

You can store it in an Action variable:

Action a = () => Console.WriteLine("Hi!");

And then you can call it:

a();