Example #1
0
 /// <inheritdoc />
 public bool Equals(Timing other)
 {
     return((_HorizontalVisible == other._HorizontalVisible) && (_HorizontalBorder == other._HorizontalBorder) &&
            (_HorizontalFrontPorch == other._HorizontalFrontPorch) &&
            (_HorizontalSyncWidth == other._HorizontalSyncWidth) && (_HorizontalTotal == other._HorizontalTotal) &&
            (_HorizontalSyncPolarity == other._HorizontalSyncPolarity) &&
            (_VerticalVisible == other._VerticalVisible) && (_VerticalBorder == other._VerticalBorder) &&
            (_VerticalFrontPorch == other._VerticalFrontPorch) &&
            (_VerticalSyncWidth == other._VerticalSyncWidth) &&
            (_VerticalTotal == other._VerticalTotal) && (_VerticalSyncPolarity == other._VerticalSyncPolarity) &&
            (_ScanMode == other._ScanMode) && (_PixelClockIn10KHertz == other._PixelClockIn10KHertz) &&
            _Extra.Equals(other._Extra));
 }
Example #2
0
 /// <inheritdoc />
 public bool Equals(Timing other)
 {
     return(_HorizontalVisible == other._HorizontalVisible &&
            _HorizontalBorder == other._HorizontalBorder &&
            _HorizontalFrontPorch == other._HorizontalFrontPorch &&
            _HorizontalSyncWidth == other._HorizontalSyncWidth &&
            _HorizontalTotal == other._HorizontalTotal &&
            _HorizontalSyncPolarity == other._HorizontalSyncPolarity &&
            _VerticalVisible == other._VerticalVisible &&
            _VerticalBorder == other._VerticalBorder &&
            _VerticalFrontPorch == other._VerticalFrontPorch &&
            _VerticalSyncWidth == other._VerticalSyncWidth &&
            _VerticalTotal == other._VerticalTotal &&
            _VerticalSyncPolarity == other._VerticalSyncPolarity &&
            _ScanMode == other._ScanMode &&
            _PixelClockIn10KHertz == other._PixelClockIn10KHertz &&
            _Extra.Equals(other._Extra));
 }