I need to find if specific interface is used in project, I just found something like
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";
}
I am not sure if this is correct but this is the latest thing I found and in doesn't work, any help greatly appreciated...