How do I generate random binary values lets say 10 digits 0010101001
and I want to call this C1
I then want to create another one called C2
same again random 10 digit binary number.
C# is my language of choice.
Is there a bitset class for c#
something simple would be nice, like
int C1
for ( int C1 = 0; <=10; C1++)
output bitset<0>
return 0;
Need to store c1 and c2 tho.