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

Example on main page incorrect #12

@bruceburge

Description

@bruceburge

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!");
    }
}

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Type

    No type

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions