AccidentalFish.ApplicationSupport.Core.Naming.FullyQualifiedNameBase.Equals C# (CSharp) Method

Equals() protected method

Compare this iwth another object of this type
protected Equals ( FullyQualifiedNameBase other ) : bool
other FullyQualifiedNameBase The object to compare to
return bool
        protected bool Equals(FullyQualifiedNameBase other)
        {
            return string.Equals(_fullyQualifiedName, other._fullyQualifiedName);
        }

Same methods

FullyQualifiedNameBase::Equals ( object obj ) : bool