ラムダ式の使い分けだっちゃ
初心者向けメモ化
何も渡さない
a = () => 0
渡す
a = (x) => x + 1; // カッコは省略化
指定して渡す。
a = (int x) => x + 1;
複数引数
a = (int x ,int y) => x + y;
戻り値あり
a = x => {return x * 5;}
追記
{}をつけることで複数行処理がかける。
追記
戻り値あり(NetSeedさんよりご指摘)
Func a=x=>x*5;
Author And Source
この問題について(ラムダ式の使い分けだっちゃ), 我々は、より多くの情報をここで見つけました https://qiita.com/takanasun/items/93367c18cc9b15b51ed8著者帰属:元の著者の情報は、元のURLに含まれています。著作権は原作者に属する。
Content is automatically searched and collected through network algorithms . If there is a violation . Please contact us . We will adjust (correct author information ,or delete content ) as soon as possible .