This is a delegate to a function with the signature
void Bla(string parameter). You can use this to pass functions to other functions.
For instance you can do this
Action action = (x => Console.WriteLine(x));
new List{"1","2","3"}.ForEach(action);
to print all characters to the console