public bool Equals(MutableTypedString other) { if (other == null || !other.GetType().Equals(this.GetType())) { return(false); } var isEqual = this.Equals_Internal(other); return(isEqual); }
public int CompareTo(MutableTypedString other) { var output = this.Value.CompareTo(other.Value); return(output); }
protected virtual bool Equals_Internal(MutableTypedString other) { var isEqual = this.Value.Equals(other.Value); return(isEqual); }