SenseNet.ContentRepository.Storage.BinaryFileName.Equals C# (CSharp) Method

Equals() public method

Indicates whether this instance and a specified object are equal.
public Equals ( object obj ) : bool
obj object Another object to compare to.
return bool
        public override bool Equals(object obj)
        {
            if (!(obj is BinaryFileName)) throw new ArgumentOutOfRangeException("obj", SR.Exceptions.General.Msg_ParamtereIsNotABinaryFileName);
            return this == (BinaryFileName) obj;
        }