Skip to content

Commit ce2c328

Browse files
author
bbadjari
committed
Added documentation headers to ExitCode enumeration values.
1 parent 6cc5f01 commit ce2c328

File tree

1 file changed

+11
-0
lines changed

1 file changed

+11
-0
lines changed

Program.cs

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -70,8 +70,19 @@ static class SwitchNames
7070
/// </summary>
7171
enum ExitCode : int
7272
{
73+
/// <summary>
74+
/// Application executed successfully.
75+
/// </summary>
7376
Success = 0,
77+
78+
/// <summary>
79+
/// Application encountered an error during execution.
80+
/// </summary>
7481
Error = 1,
82+
83+
/// <summary>
84+
/// Application encountered violations during analysis.
85+
/// </summary>
7586
ViolationsFound = 2
7687
}
7788

0 commit comments

Comments
 (0)