30秒学会 C# 片段 · 2017年12月13日

30秒学会 C# 片段 – MaxDateTime

Returns the maximum of two DateTime values.

Use the conditional operator (?:) to return the maximum of the two values.

代码实现

public static partial class _30s 
{
  public static DateTime MaxDateTime(DateTime d1, DateTime d2) 
  {
    return (d1 > d2) ? d1 : d2;
  }
}

使用样例

DateTime d1 = new DateTime(DateTime.MaxValue.Ticks);
DateTime d2 = new DateTime(DateTime.MinValue.Ticks);

_30s.MaxDateTime(d1, d2); // 12/31/9999 11:59:59 PM