I guess there is some problem with a sample test in C#. If I return 128.114.17.10, 128.114.17.105 or 128.114.17.104. it says that 128.114.17.104 is expected. But if I return the correct string or just literally type return "128.114.17.104"; I get an ArgumentOutOfRangeException.
Thanks, you helped!
I will next time. I was confused and really thought there was an issue :/
no, the problem comes from your code. you are assuming that the binary string you create is always 32 chars long, this is not true.
Please ask a
question
(not anissue
) to ask for help in the future ;-)I guess there is some problem with a sample test in C#. If I return
128.114.17.10
,128.114.17.105
or128.114.17.104.
it says that128.114.17.104
is expected. But if I return the correct string or just literally typereturn "128.114.17.104";
I get anArgumentOutOfRangeException
.