Send comments on this topic. |
|
Cause
Rule Description
public string JoinName(string first, string middle,
string last)
{
}
The parameters can all be placed on the same line:
public string JoinName(string first, string middle, string last)
{
}
public string JoinName(
string first, string middle, string last)
{
}
Alternatively, each parameter can be placed on its own line:
public string JoinName(
string first,
string middle,
string last)
{
}
How to Fix Violations
© Microsoft Corporation. All Rights Reserved.