public static Try <B> Select <A, B>(this Try <A> either, Func <A, B> projector) { return(either.Map(projector)); }