Are there any placeholders for the current function's name when using Console.Writeline()?
I believe this is what you're looking for:
using System.Diagnostics;
StackTrace stackTrace = new StackTrace();
Console.WriteLine(stackTrace.GetFrame(1).GetMethod().Name);