Ejemplo n.º 1
0
 public int CompareTo(BaudRate other)
 {
     return(_value.CompareTo(other.GetValueAs(this.Unit)));
 }
Ejemplo n.º 2
0
 public bool Equals(BaudRate other)
 {
     return(_value.Equals(other.GetValueAs(this.Unit)));
 }
Ejemplo n.º 3
0
 public static bool TryParse(string?str, out BaudRate result)
 {
     return(TryParse(str, null, out result));
 }