Example #1
0
        public bool Equals(MutableTypedString other)
        {
            if (other == null || !other.GetType().Equals(this.GetType()))
            {
                return(false);
            }

            var isEqual = this.Equals_Internal(other);

            return(isEqual);
        }
Example #2
0
        public int CompareTo(MutableTypedString other)
        {
            var output = this.Value.CompareTo(other.Value);

            return(output);
        }
Example #3
0
        protected virtual bool Equals_Internal(MutableTypedString other)
        {
            var isEqual = this.Value.Equals(other.Value);

            return(isEqual);
        }