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;
        }