Decrypted
C# 5+ compiler
https://github.com/pythonnet/pythonnet might this be of any use? Used this in one project to call python scripts from C# but should be able to do the reverse. Could use this to import C# assemblies to compile the .cs file?
72 replies
Feeding Random into itself - does it "corrupt the randomness"?
This uses SHA256 to hash the state on top of itself You can then persist the 32 byte state and resume from it when required.
Not sure if this is the best way to do this. I don't even know if the
bigInt % int.MaxValue
is safe operation for converting to int..61 replies