我在类文件中有一个方法。说,
class A
{
public void Getmethod(int first,int second)
{
Console.WriteLine("GetMethod");
}
}
在我的另一个类文件中,我有以下代码
class B: A
{
A obj = new A();
public void callingfunction()
{
obj.Getmethod(2,3);
}
}
假设我将"Getmethod"
名称存储在字符串变量中,比如Methodname
。是否可以找到我的Methodname
是否在我的解决方案中的任何其他地方被使用(也就是它应该检查解决方案的所有类文件)