Ejemplo n.º 1
0
 /// <summary>
 /// Does this set contain a matching method?
 /// </summary>
 public bool ContainsMatching(MethodDocumentation method)
 {
     TypeDocumentation mine;
     return TryGetMatchingType(method.DeclaringType, out mine) && mine.ContainsMatching(method);
 }
Ejemplo n.º 2
0
        /// <summary>
        /// Does this set contain a matching method?
        /// </summary>
        public bool ContainsMatching(MethodDocumentation method)
        {
            var xid = method.Xid;

            return(Methods.Any(x => x.Xid == xid));
        }
Ejemplo n.º 3
0
 /// <summary>
 /// Does this set contain a matching method?
 /// </summary>
 public bool ContainsMatching(MethodDocumentation method)
 {
     var xid = method.Xid;
     return Methods.Any(x => x.Xid == xid);
 }
Ejemplo n.º 4
0
        /// <summary>
        /// Does this set contain a matching method?
        /// </summary>
        public bool ContainsMatching(MethodDocumentation method)
        {
            TypeDocumentation mine;

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