case as followed:
in the project a
public class X1
{
public string Name="X1";
}
public class X2
{
public string GetName(string name)
{
return "";
}
public string GetName(string name,ref X1 x1)
{
return "";
}
}
question:
how to get 'GetName' MethodInfo by reflection's getmethd function in other project