NDepend:搜索使用某个类作为Property或Field的类(直接或在列表中)

时间:2017-11-30 09:02:52

标签: c# ndepend

我想得到一个使用某个类(让我们称之为X)的类的列表作为属性或字段(直接或在列表中)

public class A
{
 X field;
 List<X> field2;
}

1 个答案:

答案 0 :(得分:1)

看起来这个查询可以解决这个问题

instance StrTag T where
   ...
instance Read T where
   readPrec = readPrec_fromStrTag  -- use default from the library

NDepend query property and field with return type