What method the Html.Action use for rendering a partial views ?
Example 1 (with parameters):
@Html.Action("_PartialGetMemo", "Memos", new { id = 0 })
Example 2 (without parameters):
@Html.Action("_PartialGetMemo", "Memos")
Can somone explain how this works please ?