Adf.Business.ValueObject.FileName.Equals C# (CSharp) Méthode

Equals() public méthode

Compares this instance to another FileName object.
public Equals ( object obj ) : bool
obj object The object to compare against.
Résultat bool
        public override bool Equals(object obj)
        {
            // Make sure the cast that follows won't fail
            if (obj == null || obj.GetType() != GetType())
                return false;

            return (this == (FileName) obj);
        }