Skip to content

Feature Request: Light weight property declaration #224

@jonparker

Description

@jonparker

Sometimes a class has many properties with the same type.
For example

public class Person
{
  public string FirstName { get;set; }
  public string LastName { get;set; }
  public string EmailAddress { get;set; }
}

Would become:

public class Person
{
  public string FirstName, LastName, EmailAddress { get;set; }
}

Metadata

Metadata

Assignees

No one assigned

    Type

    No type

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions