How do you do “inline functions” in C#? I don’t think I understand the concept. Are they like anonymous methods? Like lambda functions?

Note: The answers almost entirely deal with the ability to inline functions, i.e. “a manual or compiler optimization that replaces a function call site with the body of the callee.” If you are interested in anonymous (a.k.a. lambda) functions, see @jalf’s answer or What is this ‘Lambda’ everyone keeps speaking of?.

14 Answers
14

Leave a Reply

Your email address will not be published. Required fields are marked *