We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3cf6fb8 commit bc49695Copy full SHA for bc49695
1 file changed
src/IGLib.Core/Console/Validation/Implementations/StringParsing/Parsers.cs
@@ -7,6 +7,15 @@
7
namespace IGLib
8
{
9
10
+ internal sealed class IdentityStringParser : IStringParser<string>
11
+ {
12
+ public bool TryParse(string text, out string value)
13
14
+ value = text;
15
+ return true;
16
+ }
17
18
+
19
internal sealed class BooleanStringParser : IStringParser<bool>
20
21
public bool TryParse(string text, out bool value) =>
0 commit comments