Skip to content

Add option to generate async-over-sync virtual methods for their sync counterparts #106

@hazzik

Description

@hazzik
class A
{
  public abstract void SomeMethod();
}

=>

partial class A
{
  // Pseudo code. All rules shall apply
  public virtual async Task SomeMethodAsync()
  {
    SomeMethod();
  }
}

Possible controlled by an option, but I would prefer this to be a default behavior.

Metadata

Metadata

Assignees

No one assigned

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions