コード例 #1
0
ファイル: Program.cs プロジェクト: vnisor/jekyll-url-fixer
 public bool MatchesDate(PostInfo otherPostInfo)
 {
     return otherPostInfo.Year == Year
            && otherPostInfo.Month == Month
            && otherPostInfo.Day == Day;
 }
コード例 #2
0
ファイル: Program.cs プロジェクト: haacked/jekyll-url-fixer
 public bool MatchesDate(PostInfo otherPostInfo)
 {
     return(otherPostInfo.Year == Year &&
            otherPostInfo.Month == Month &&
            otherPostInfo.Day == Day);
 }