K2Informatics.Erlnet.OtpErlangAtom.Equals C# (CSharp) Method

Equals() public method

public Equals ( Object o ) : bool
o Object
return bool
        public override bool Equals(Object o)
        {
            if (!(o is OtpErlangAtom))
            {
                return false;
            }
            OtpErlangAtom atom = (OtpErlangAtom)o;
            return this.atom.Equals(atom.atom);
        }