示例#1
0
    internal static Method solveInstance(TypeNode type, Method callee, out bool solved)
    {

      Method instanceMethod = type.GetImplementingMethod(callee, false);
      if (instanceMethod == null)
      {
        solved = false;
        return callee;
        // Console.Out.WriteLine();
      }
      solved = true;
      return instanceMethod;
    }