Пример #1
0
 public bool TryGetMethod(string name, Type[] parameterTypes, out MethodDetail method)
 {
     method = GetMethodInternal(name, parameterTypes);
     return(method != null);
 }
Пример #2
0
 public bool TryGetMethod(string name, out MethodDetail method)
 {
     method = GetMethodInternal(name, null);
     return(method != null);
 }