You can get the current class name, but I can't think of anyway to get the current method name. Though, the names of methods for the current can be obtained.
string className = this.GetType().FullName;
System.Reflection.MethodInfo[] methods = this.GetType().GetMethods();
foreach (var method in methods)
Console.WriteLine(method.Name);