/// <summary> /// Expects that the Actual type implements the interface provided /// as a generic parameter /// </summary> /// <param name="to">Continuation to operate on</param> /// <typeparam name="TBase">Interface type to look for</typeparam> /// <returns></returns> public static IMore <Type> Inherit <TBase>( this ITo <Type> to ) { return(to.Inherit <TBase>(NULL_STRING)); }