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

Equals() public method

The equals.
public Equals ( ValueString other ) : bool
other ValueString /// The other. ///
return bool
        public bool Equals(ValueString other)
        {
            if (other == null)
            {
                return false;
            }

            return string.Equals(Value, other.Value);
        }

Same methods

ValueString::Equals ( object other ) : bool