You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
SelfLog.WriteLine($"Unable to find a method called {name}. Candidate methods are:{Environment.NewLine}{string.Join(Environment.NewLine,candidateMethods)}");
473
+
{
474
+
if(candidateMethods.Any())
475
+
{
476
+
SelfLog.WriteLine($"Unable to find a method called {name}. Candidate methods are:{Environment.NewLine}{string.Join(Environment.NewLine,candidateMethods)}");
477
+
}
478
+
else
479
+
{
480
+
SelfLog.WriteLine($"Unable to find a method called {name}. No candidates found.");
481
+
}
482
+
}
474
483
else
484
+
{
475
485
SelfLog.WriteLine($"Unable to find a method called {name} "
0 commit comments