Skip to content

Add support for local functions #85

@maca88

Description

@maca88

Example:

public class Simple
{
  public void Test()
  {
    void Read()
    {
      SimpleFile.Read();
    }
    Read();
  }
}

should be converted to:

public partial class Simple
{
  public Task TestAsync()
  {
    Task ReadAsync()
    {
      return SimpleFile.ReadAsync();
    }
    return ReadAsync();
  }
}

Metadata

Metadata

Assignees

No one assigned

    Projects

    No projects

    Milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions