/// <summary>
 /// Combines a PathString and QueryString into the joined URI formatted string value.
 /// </summary>
 /// <returns>The joined URI formatted string value</returns>
 public string Add(QueryString other)
 {
     return(ToUriComponent() + other.ToUriComponent());
 }