i'm new to ndepend and i want a cqlinq rule to find all not documented methods. Thats my current query, but there is no documented-Property.
from m in Application.Methods
.Where(m => !m.IsGeneratedByCompiler && m.Visibility == Visibility.Private && m.??Documentation?? == false)
select new { m, m.Visibility }
any ideas? Happy new year... :-)