是否可以在程序集中找到类的所有用法?

[Test]
public void Test()
{
    var numUsages = FindUsages(typeof(MyDeprecatedType),typeof(MyDeprecatedType).Assembly);
    Assert.LessOrEqual(expectedNumUsages, numUsages);
}

public static int FindUsages(Type type, Assembly assembly)
{
    return //Num usages of deprecated type
}

最佳答案

您只能通过查看元数据并通过methodbase.getmethodbody解释方法主体启用来进行反射。

http://msdn.microsoft.com/fr-fr/library/system.reflection.methodbase.getmethodbody%28v=vs.110%29.aspx

您可以像这样读取方法主体:

http://www.codeproject.com/Articles/14058/Parsing-the-IL-of-a-Method-Body

关于c# - 查找装配体中类的所有用途,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/23666398/

10-10 18:26
查看更多