public static bool TryParse(string text, out ElectricalConductanceUnit result)
 {
     return(UnitParser <ElectricalConductanceUnit> .TryParse(text, out result));
 }
Exemplo n.º 2
0
 /// <summary>
 /// Returns a quantity indicating whether this instance is equal to a specified <see cref="Gu.Units.ElectricalConductanceUnit"/> object.
 /// </summary>
 /// <param name="other">An instance of <see cref="Gu.Units.ElectricalConductanceUnit"/> object to compare with this instance.</param>
 /// <returns>
 /// true if <paramref name="other"/> represents the same ElectricalConductanceUnit as this instance; otherwise, false.
 /// </returns>
 public bool Equals(ElectricalConductanceUnit other)
 {
     return(this.symbol == other.symbol);
 }