public bool Equals(RotationalStiffnessPerLength other)
 {
     return(_value.Equals(other.AsBaseNumericType(this.Unit)));
 }
 // Windows Runtime Component does not allow public methods/ctors with same number of parameters: https://msdn.microsoft.com/en-us/library/br230301.aspx#Overloaded methods
 internal int CompareTo(RotationalStiffnessPerLength other)
 {
     return(_value.CompareTo(other.AsBaseNumericType(this.Unit)));
 }