コード例 #1
0
 /// <summary>
 /// Does this set contain a matching property?
 /// </summary>
 public bool ContainsMatching(PropertyDocumentation property)
 {
     TypeDocumentation mine;
     return TryGetMatchingType(property.DeclaringType, out mine) && mine.ContainsMatching(property);
 }
コード例 #2
0
        /// <summary>
        /// Does this set contain a matching property?
        /// </summary>
        public bool ContainsMatching(PropertyDocumentation property)
        {
            var xid = property.Xid;

            return(Properties.Any(x => x.Xid == xid));
        }
コード例 #3
0
ファイル: TypeDocumentation.cs プロジェクト: Xtremrules/dot42
 /// <summary>
 /// Does this set contain a matching property?
 /// </summary>
 public bool ContainsMatching(PropertyDocumentation property)
 {
     var xid = property.Xid;
     return Properties.Any(x => x.Xid == xid);
 }
コード例 #4
0
        /// <summary>
        /// Does this set contain a matching property?
        /// </summary>
        public bool ContainsMatching(PropertyDocumentation property)
        {
            TypeDocumentation mine;

            return(TryGetMatchingType(property.DeclaringType, out mine) && mine.ContainsMatching(property));
        }