I have two functions :
public static string Image(this HtmlHelper helper, string src, string alt)
and
public static string Image(HtmlHelper helper, string src, string alt)
And i'd like to know the role of this
in the first function and why in this case i have to put the parameter with this
in the first place?