csharpextensions icon indicating copy to clipboard operation
csharpextensions copied to clipboard

If the constructor's parameters placed separately on more than 3 lines including the ClassName's line, the Initialize popup cannot be triggered by editor.action.quickFix

Open cateyes99 opened this issue 7 years ago • 0 comments

Write a constructor like this

public ClassName( int a,
    int b, int c,
    int d, int e, int f)
{
}

or

public ClassName(
    int b, int c,
    int d, int e, int f)
{
}

after int f, the the Initialize propup cannot be triggered :(

cateyes99 avatar Mar 15 '17 22:03 cateyes99