Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
C# では、ラムダ式を記述するときに、=> ラムダ演算子の単一文字バージョンはありますか?
=> を入力するのはそれほど難しくないことはわかっていますが、それでも...
いいえ。2 文字 ( =>) は必須です。これは、言語が書かれ、設計された方法です。
=>
ありがたいことdelegate { ... } に、ほとんどの場合、古い構文よりもはるかに短くなっています。
delegate { ... }