LibiadaCore.Core.SimpleTypes.ValueInt.Equals C# (CSharp) Méthode

Equals() public méthode

The equals.
public Equals ( ValueInt other ) : bool
other ValueInt /// The other element. ///
Résultat bool
        public bool Equals(ValueInt other)
        {
            if (other == null)
            {
                return false;
            }

            return value == other.value;
        }

Same methods

ValueInt::Equals ( object other ) : bool