-
-
Notifications
You must be signed in to change notification settings - Fork 129
Open
Description
Input:
public class ClassName
{
public Dictionary<string /*key*/, int /*value*/> Dict { get; set; }
public bool DoSomething(Dictionary<string /*key*/, int /*value*/> parameter1)
{
}
}
Output:
public class ClassName
{
public Dictionary<
string /*key*/
,
int /*value*/
> Dict { get; set; }
public bool DoSomething(
Dictionary<
string /*key*/
,
int /*value*/
> parameter1
) { }
}
Expected behavior:
public class ClassName
{
public Dictionary<string /*key*/, int /*value*/> Dict { get; set; }
public bool DoSomething(Dictionary<string /*key*/, int /*value*/> parameter1)
{
}
}
Or maybe you guys have some good ideas?
Metadata
Metadata
Assignees
Labels
No labels