static public bool IsExtensionMethodOf(this MethodBase item, Type type) { if (item.IsExtensionMethod() && item.CanTechnicalParameterHold(0, type)) { return(true); } return(false); }