コード例 #1
0
        /// <summary>
        /// Compares the <see cref="Frame"/> with an <see cref="IFrame"/>.
        /// </summary>
        /// <param name="other">The <see cref="IFrame"/> to compare with the current <see cref="Frame"/>.</param>
        /// <returns>A 32-bit signed integer that indicates the relative order of the objects being compared.</returns>
        /// <remarks>This implementation of a basic frame compares itself by timestamp.</remarks>
        public int CompareTo(IFrame other)
        {
            if ((object)other != null)
            {
                return(m_timestamp.CompareTo(other.Timestamp));
            }

            return(1);
        }
コード例 #2
0
        public int CompareTo(EventInfo other)
        {
            var ticksComparisonResult = Ticks.CompareTo(other.Ticks);

            if (ticksComparisonResult != 0)
            {
                return(ticksComparisonResult);
            }
            return(Id.CompareTo(other.Id));
        }
コード例 #3
0
ファイル: Time.cs プロジェクト: 842549829/Pool
 /// <summary>
 /// 比较当前与参数指定的时间
 /// </summary>
 /// <param name="other"> 与当前时间做比较的时间 </param>
 /// <returns> 如果当前时间,大于 other 返回 1;小于 other 返回 -1;等于 other 返回 0 </returns>
 public int CompareTo(Time other)
 {
     return(Ticks.CompareTo(other.Ticks));
 }
コード例 #4
0
ファイル: ChannelFrameBase.cs プロジェクト: xj0229/gsf
 /// <summary>
 /// Compares the <see cref="ChannelFrameBase{T}"/> with an <see cref="IFrame"/>.
 /// </summary>
 /// <param name="other">The <see cref="IFrame"/> to compare with the current <see cref="ChannelFrameBase{T}"/>.</param>
 /// <returns>A 32-bit signed integer that indicates the relative order of the objects being compared.</returns>
 /// <remarks>This frame implementation compares itself by timestamp.</remarks>
 public virtual int CompareTo(IFrame other)
 {
     // We sort frames by timestamp
     return(m_timestamp.CompareTo(other.Timestamp));
 }