Skip to content

Commit 1c283b1

Browse files
committed
enable case sensitive comparisons by default
1 parent 6f852c0 commit 1c283b1

File tree

1 file changed

+8
-0
lines changed

1 file changed

+8
-0
lines changed

FluentCommandLineParser/FluentCommandLineParser.cs

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -39,6 +39,14 @@ namespace Fclp
3939
/// </summary>
4040
public class FluentCommandLineParser : IFluentCommandLineParser
4141
{
42+
/// <summary>
43+
/// Initialises a new instance of the <see cref="FluentCommandLineParser"/> class.
44+
/// </summary>
45+
public FluentCommandLineParser()
46+
{
47+
IsCaseSensitive = true;
48+
}
49+
4250
/// <summary>
4351
/// The <see cref="StringComparison"/> type used for case sensitive comparisons.
4452
/// </summary>

0 commit comments

Comments
 (0)