/// <summary> /// Gets a slice starting from the offset at the end of the slice. /// </summary> /// <param name="offset"></param> /// <returns></returns> public static ICapture <T> Last <T>(this ICapture <T> segment, int offset) { return(segment.Last(offset, offset)); }