csharpextensions
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
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 :(