public static string NameInMap <Method>(this Method method)
     where Method : MulticastDelegate
 {
     return(MethodNameMap <Method> .GetName(method));
 }
 public static Method MethodInMap <Method>(this string str)
     where Method : MulticastDelegate
 {
     return(MethodNameMap <Method> .GetMethod(str));
 }