consulo-csharp icon indicating copy to clipboard operation
consulo-csharp copied to clipboard

Improve highlight error if property is not found, but found method

Open VISTALL opened this issue 8 years ago • 0 comments

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 "";
		}
	}
}

VISTALL avatar Dec 01 '17 11:12 VISTALL