Skip to content
This repository has been archived by the owner on Nov 26, 2020. It is now read-only.

Example on main page incorrect #12

Open
bruceburge opened this issue Sep 29, 2019 · 0 comments
Open

Example on main page incorrect #12

bruceburge opened this issue Sep 29, 2019 · 0 comments

Comments

@bruceburge
Copy link

On the main page, basically all the content that is there is.

public class SampleModule : Nancy.NancyModule
{
    public SampleModule()
    {
        Get["/"] = _ => "Hello World!";
    }
}

running the example above on Nancy 2.0 results in
"Cannot apply indexing with [] to an expression of type 'method group'"

Should this not be ?

public class SampleModule : Nancy.NancyModule
{
    public SampleModule()
    {
        Get("/", = _ => "Hello World!");
    }
}
Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant