We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 64e6a26 commit 4f26b3cCopy full SHA for 4f26b3c
1 file changed
src/IGLib.Core/Console/Validation/Implementations/StringParsing/Parsers.cs
@@ -8,6 +8,7 @@
8
namespace IGLib
9
{
10
11
+ /// <summary>Dummy identity parser - just returns the original string when parsing a string value from a string.</summary>
12
internal sealed class IdentityStringParser : IStringParser<string>
13
14
public bool TryParse(string text, out string value)
@@ -17,6 +18,7 @@ public bool TryParse(string text, out string value)
17
18
}
19
20
21
+ /// <summary>Parses boolean from a striring.</summary>
22
internal sealed class BooleanStringParser : IStringParser<bool>
23
24
public bool TryParse(string text, out bool value) =>
0 commit comments