Saturday 11 March 2017

MVC - Fix Error - Cannot convert method group 'DisplayFor' to non-delegate type 'object'.


Watch on YouTube

Error    CS0428    Cannot convert method group 'DisplayFor' to non-delegate type 'object'. Did you intend to invoke the method?
Compiler Error Message: CS1503: Argument 1: cannot convert from 'method group' to 'HelperResult'


To Fix it replace (remove space)
 @Html.DisplayFor (modelItem => item.LanID)
with
 @Html.DisplayFor(modelItem => item.LanID)

No comments:

Post a Comment