public bool TryGetMethod(string name, Type[] parameterTypes, out MethodDetail method) { method = GetMethodInternal(name, parameterTypes); return(method != null); }
public bool TryGetMethod(string name, out MethodDetail method) { method = GetMethodInternal(name, null); return(method != null); }