Lambdas are anonymous functions that can be used to create inline functions. They are useful for short, simple functions.
var add = (int x, int y) => x + y; var result = add(42, 10); result;