LibiadaCore.Core.SimpleTypes.ValueString.Equals C# (CSharp) Method

Equals() public method

The equals.
public Equals ( object other ) : bool
other object /// The other element. ///
return bool
        public override bool Equals(object other)
        {
            if (ReferenceEquals(this, other))
            {
                return true;
            }

            return Equals(other as ValueString);
        }

Same methods

ValueString::Equals ( ValueString other ) : bool