public int CompareTo(Energy other) =>
 Joules.CompareTo(other.Joules);
Пример #2
0
 public override int GetHashCode()
 {
     return(Name.GetHashCode() ^ Joules.GetHashCode());
 }
 public bool Equals(Energy other) =>
 Joules.Equals(other.Joules);