/// <summary>
 /// Returns a quantity indicating whether this instance is equal to a specified <see cref="Gu.Units.DensityUnit"/> object.
 /// </summary>
 /// <param name="other">An instance of <see cref="Gu.Units.DensityUnit"/> object to compare with this instance.</param>
 /// <returns>
 /// true if <paramref name="other"/> represents the same DensityUnit as this instance; otherwise, false.
 /// </returns>
 public bool Equals(DensityUnit other)
 {
     return(this.symbol == other.symbol);
 }
 /// <summary>
 /// Creates an instance of <see cref="Gu.Units.DensityUnit"/> from its string representation
 /// </summary>
 /// <param name="text">The string representation of the <see cref="Gu.Units.DensityUnit"/></param>
 /// <param name="result">The parsed <see cref="DensityUnit"/></param>
 /// <returns>True if an instance of <see cref="DensityUnit"/> could be parsed from <paramref name="text"/></returns>
 public static bool TryParse(string text, out DensityUnit result)
 {
     return(UnitParser <DensityUnit> .TryParse(text, out result));
 }