Relationship between MSVC++ rand() and C# System.Random - Stack Overflow most recent 30 from stackoverflow.com 2009-11-30T07:54:29Z http://stackoverflow.com/feeds/question/1004807 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1004807/relationship-between-msvc-rand-and-c-system-random 0 Relationship between MSVC++ rand() and C# System.Random bobobobo 2009-06-17T02:29:38Z 2009-06-17T02:46:11Z <p>How can I make it so the same sequence of random numbers come out of an MSVC++ program and a C# .NET program?</p> <p>Is it possible? Is there any relationship between MSVC++ rand() and System.Random?</p> <p>Given the example below it seems they are totally different.</p> <pre> #include &lt;iostream&gt; using namespace std; int main() { srand( 1 ) ; cout &lt;&lt; rand() &lt;&lt; endl &lt;&lt; rand() &lt;&lt; endl &lt;&lt; rand() &lt;&lt; endl ; } </pre> <pre> using System; class Program { static void Main( string[] args ) { Random random = new Random( 1 ); Console.WriteLine( random.Next() ); Console.WriteLine( random.Next() ); Console.WriteLine( random.Next() ); } } </pre> http://stackoverflow.com/questions/1004807/relationship-between-msvc-rand-and-c-system-random/1004816#1004816 3 Answer by Stefan Mai for Relationship between MSVC++ rand() and C# System.Random Stefan Mai 2009-06-17T02:33:30Z 2009-06-17T02:33:30Z <p>The easiest way to do this would be to make an unmanaged reference to a C++ DLL that contains the random number generator with a parameter as the seed. Then you can be sure they're the same.</p> http://stackoverflow.com/questions/1004807/relationship-between-msvc-rand-and-c-system-random/1004820#1004820 2 Answer by Lucas McCoy for Relationship between MSVC++ rand() and C# System.Random Lucas McCoy 2009-06-17T02:35:27Z 2009-06-17T02:35:27Z <p>It is possible (not exactlly easy) to use .NET mangaged libraries in unmanaged C++. You might want to take a look at the <a href="http://msdn.microsoft.com/en-us/library/zsfww439(vs.71).aspx" rel="nofollow">MSDN</a> documentation.</p> http://stackoverflow.com/questions/1004807/relationship-between-msvc-rand-and-c-system-random/1004859#1004859 3 Answer by JaredPar for Relationship between MSVC++ rand() and C# System.Random JaredPar 2009-06-17T02:46:11Z 2009-06-17T02:46:11Z <p>Yes they are very different functions. Occasionally you'll find that BCL classes are just very thin wrappers around their native counterparts using PInvoke to execute them. This is not the case with System.Random. It is a 100% managed implementation and is completely separate from the srand version. </p> <p>Can you help us out a bit and explain why you want to have the same set of numbers? Is it for testing for instance?</p> <p>If you do truly want to have the same set of random numbers, one option is to create a simple COM object which wraps srand. The COM object would be available to both your managed and native code and hence would be able to proffer up the same algorithm in both places. </p>