/// <summary> /// Appends the name of a collection to the <paramref name="baseUri"/> /// </summary> /// <param name="baseUri">The base URL to append the <paramref name="entry"/> name to</param> /// <param name="entry">The <see cref="ICollection"/> whose name to append to the <paramref name="baseUri"/></param> /// <returns>The <paramref name="baseUri"/> with the <paramref name="entry"/> name appended.</returns> public static Uri Append(this Uri baseUri, ICollection entry) { return(baseUri.AppendDirectory(entry.Name)); }