I have this action method in C#:
public ActionResult Index() {
ViewBag.Message = "Hello";
return View();
}
And this view (Index.cshtml):
<h2>@ViewBag.Message</h2>
And this produces the expected "Hello" on the page.
I want to do the controller in F#. I've tried
type MainController() =
inherit Controller()
member x.Index() =
x.ViewBag?Message <- "Hello"
x.View()
And this produces the error message "Method or object constructor 'op_DynamicAssignment' not found".
I've looked at some of the F# code samples for the dynamic operator, and I can't see anything that's shorter than several pages of description and many lines of code. They seem to be too general for just this property "setter".