PreviousNext

Local functions in C# 7.0

by bill-s, 2017-07-10T01:25:43.000Z

One of new features of C# 7.0 is support for local functions. Local functions are methods that are defined inside other methods to simplify more complex code. This blog post shows how to use local functions in C# 7.0 and gives some advice in context of technical design of code.

Read More