Pedro Paulo
Pedro Paulo
CC#
Created by ElectricTortoise on 3/27/2025 in #help
✅ Random help
I've never said it'd be easier 😛 I misunderstood his problem, I thought he wanted to generate a ulong value totally random, that's why I said to use the RandomNumberGenerator and not because it'd be easier, and that's also why I said "nevermind" because I realized I understood everything incorrectly when he said he had to seed the random numbers.
61 replies
CC#
Created by ElectricTortoise on 3/27/2025 in #help
✅ Random help
nevermind then
61 replies
CC#
Created by ElectricTortoise on 3/27/2025 in #help
✅ Random help
For this case I'd say you should use RandomNumberGenerator instead of the Random class
61 replies
CC#
Created by ElectricTortoise on 3/27/2025 in #help
✅ Random help
ohh, now I see your point, you want to have a random value starting from 0 and ending at ulong.MaxValue, which is greater than long. The solution I said was to have only positive numbers, but not attending the whole range of ulong.
61 replies
CC#
Created by ElectricTortoise on 3/27/2025 in #help
✅ Random help
I think it'll faill, your cast
61 replies
CC#
Created by ElectricTortoise on 3/27/2025 in #help
✅ Random help
maybe use Math.Abs to convert it to positive
61 replies
CC#
Created by ElectricTortoise on 3/27/2025 in #help
✅ Random help
you want a positive value, unsigned long
61 replies
CC#
Created by ElectricTortoise on 3/27/2025 in #help
✅ Random help
Int64.MinValue is a negative value
61 replies
CC#
Created by ElectricTortoise on 3/27/2025 in #help
✅ Random help
I don't think so
61 replies
CC#
Created by ElectricTortoise on 3/27/2025 in #help
✅ Random help
There are some overloads for the method, and one of them you can specify the inclusive min value, just specifies it as 0 and the max value as long.MaxValue
61 replies