具有多個引數或無引數的 Lambda 表示式

=> 運算子左側的表示式周圍使用括號表示多個引數。

delegate int ModifyInt(int input1, int input2);
ModifyInt multiplyTwoInts = (x,y) => x * y;

類似地,一組空括號表示該函式不接受引數。

delegate string ReturnString();
ReturnString getGreeting = () => "Hello world.";