Skip to content

Add support for compound parameters #2

Description

@Richiban

Parameters to methods should be able to be compound types (possibly tagged with at attribute?).

E.g. instead of

[CommandLine]
public void M(string p1, string p2)
{
	...
}

We should be able to write something like:

class Params
{
	public string P1 { get; set; }
	public string P2 { get; set; }
}

[CommandLine]
public void M([CompoundParameter] Params params)
{
	...
}

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions