Another option is to use GetMethods
and filter using linq:
returnType.GetMethods().Single(mi => mi.Name == "Parse"
&& mi.GetParameters().Count() == 1
&& mi.GetParameters()[0].ParameterType == typeof(string))
In that case you can also check for generic parameters if necessary.