I would like to use RNGCryptoServiceProvider as my source of random numbers. As it only can output them as an array of byte values how can I convert them to 0 to 1 double value while preserving uniformity of results?
|
feedback
|
| |||||||||
feedback
|
|
You can use the BitConverter.ToDouble(...) method. It takes in a byte array and will return a Double. Thre are corresponding methods for most of the other primitive types, as well as a method to go from the primitives to a byte array. | |||||||
feedback
|
|
Use BitConverter to convert a sequence of random bytes to a Double:
| |||||
feedback
|