System.Configuration.Internal.FileVersion.Equals C# (CSharp) 메소드

Equals() 공개 메소드

public Equals ( Object obj ) : bool
obj Object
리턴 bool
        public override bool Equals(Object obj) {
            FileVersion other = obj as FileVersion;
            return
                   other != null
                && _exists == other._exists
                && _fileSize == other._fileSize
                && _utcCreationTime == other._utcCreationTime
                && _utcLastWriteTime == other._utcLastWriteTime;
        }