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 b0b598d commit 56418dbCopy full SHA for 56418db
src/Console/ConsoleOption.cs
@@ -15,7 +15,7 @@ public ConsoleOption() =>
15
16
public OutputFormat? Format { get; private set; }
17
18
- public int? Number { get; private set; }
+ public long? Number { get; private set; }
19
20
- static int ParseNumber(string value) => int.Parse([.. value.Where(char.IsDigit)]);
+ static long ParseNumber(string value) => long.Parse([.. value.Where(char.IsDigit)]);
21
}
0 commit comments