Skip to content

Create method for wrapping channel methods in a single line #1

@azzlack

Description

@azzlack

Would be nice to do like this:

var result = await this.proxy.Run(x => x.DoSomething());

instead of

object result = null;

await this.proxy.Use(x => {
    result = x.DoSomething();
});

Metadata

Metadata

Assignees

Projects

No projects

Milestone

No milestone

Relationships

None yet

Development

No branches or pull requests

Issue actions