We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c63e231 commit c534e56Copy full SHA for c534e56
src/System.CommandLine/ParseResult.cs
@@ -15,7 +15,7 @@ namespace System.CommandLine
15
/// <summary>
16
/// Describes the results of parsing a command line input based on a specific parser configuration.
17
/// </summary>
18
- public class ParseResult
+ public sealed class ParseResult
19
{
20
private readonly IReadOnlyList<ParseError> _errors;
21
private readonly CommandResult _rootCommandResult;
src/System.CommandLine/Parsing/ParseError.cs
@@ -6,7 +6,7 @@ namespace System.CommandLine.Parsing
6
7
/// Describes an error that occurs while parsing command line input.
8
9
- public class ParseError
+ public sealed class ParseError
10
11
internal ParseError(
12
string message,
0 commit comments