我需要查找项目中是否使用了特定的接口,我刚刚找到了类似的东西
Type IType = Type.GetType("iInterfaceName"); // I want to look in whole project, not in one file
if (IType == null)
{
Text = "Interface Not Exist";
}
else
{
Text = "Interface Exist";
}
我不确定这是否正确,但这是我发现的最新东西并且不起作用,非常感谢任何帮助......