C# language feature:
applies to
benefit
how to use
example:
void Local_Functions_Example()
{
Display("Hi");
Display("How are you?");
void Display(string somestring) => System.Console.WriteLine(somestring);
}