consulo-csharp
consulo-csharp copied to clipboard
Improve highlight error if property is not found, but found method
namespace highlightError {
public class HighError {
public static void me() {
HighError error = new HighError();
error.Call().Trim();
error.Call.Trim(); // Call resolved. Make better error - method found
}
public string Call() {
return "";
}
}
}