Skip to content

Commit afc9865

Browse files
committed
Fixed ordering of properties and fields in CommandLineArgumentsConfiguration
1 parent 21a7b5e commit afc9865

File tree

1 file changed

+12
-12
lines changed

1 file changed

+12
-12
lines changed

src/AtleX.CommandLineArguments/Configuration/CommandLineArgumentsConfiguration.cs

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -36,18 +36,6 @@ public IEnumerable<TypeParser> TypeParsers
3636
}
3737
}
3838

39-
/// <summary>
40-
/// Gets the <see cref="List{T}"/> of <see cref="ArgumentValidator"/> to
41-
/// validate the command line arguments with
42-
/// </summary>
43-
private readonly List<ArgumentValidator> _validators;
44-
45-
/// <summary>
46-
/// Gets the <see cref="List{T}"/> of <see cref="TypeParser"/> to
47-
/// parse the command line arguments with
48-
/// </summary>
49-
private readonly List<TypeParser> _typeParsers;
50-
5139
/// <summary>
5240
/// Gets the <see cref="ICommandLineArgumentsParser"/> to parse the command
5341
/// line arguments with
@@ -67,6 +55,18 @@ public IHelpWriter HelpWriter
6755
set;
6856
}
6957

58+
/// <summary>
59+
/// Gets the <see cref="List{T}"/> of <see cref="ArgumentValidator"/> to
60+
/// validate the command line arguments with
61+
/// </summary>
62+
private readonly List<ArgumentValidator> _validators;
63+
64+
/// <summary>
65+
/// Gets the <see cref="List{T}"/> of <see cref="TypeParser"/> to
66+
/// parse the command line arguments with
67+
/// </summary>
68+
private readonly List<TypeParser> _typeParsers;
69+
7070
/// <summary>
7171
/// Initializes a new instance of <see cref="CommandLineArgumentsConfiguration"/>
7272
/// </summary>

0 commit comments

Comments
 (0)