We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 02c9002 commit 065862bCopy full SHA for 065862b
1 file changed
FiscalDeviceStatusDecoder/Application/Services/Hex.cs
@@ -22,7 +22,7 @@ public string ConvertToBinary(string separator = "") =>
22
23
public void ReduceRange(int? lessThan = null, int? moreThan = null)
24
{
25
- bool _ = Value.Length % 2 != 0 ? true : throw new ArgumentException($"You must write HEX number!");
+ bool _ = Value.Length % 2 == 0 ? true : throw new ArgumentException($"You must write HEX number!");
26
27
List<string> validHexNumbers = new List<string>();
28
0 commit comments