Example #1
0
 public bool MatchesDate(PostInfo otherPostInfo)
 {
     return otherPostInfo.Year == Year
            && otherPostInfo.Month == Month
            && otherPostInfo.Day == Day;
 }
Example #2
0
 public bool MatchesDate(PostInfo otherPostInfo)
 {
     return(otherPostInfo.Year == Year &&
            otherPostInfo.Month == Month &&
            otherPostInfo.Day == Day);
 }