コード例 #1
0
ファイル: RouteAttribute.cs プロジェクト: cody82/DownSite
 protected bool Equals(RouteAttribute other)
 {
     return(base.Equals(other) &&
            string.Equals(Path, other.Path) &&
            string.Equals(Summary, other.Summary) &&
            string.Equals(Notes, other.Notes) &&
            string.Equals(Verbs, other.Verbs) &&
            Priority == other.Priority);
 }
コード例 #2
0
 protected bool Equals(RouteAttribute other)
 {
     return base.Equals(other) 
         && string.Equals(Path, other.Path) 
         && string.Equals(Summary, other.Summary) 
         && string.Equals(Notes, other.Notes) 
         && string.Equals(Verbs, other.Verbs) 
         && Priority == other.Priority;
 }