I've tried everything I know ( and that's really little ) and read everything I found, but I still don't know what's wrong here...
Short version... If I must write more details, please tell me
I have small program with only one class. All it has to do is to thrrow two dices.
So, I have class "Dice" with Value field and one method called Roll() which returns rnd1.Next(1,7). (rnd1 is declared in class earlier).
Now, I have two objects of that class. dice1 and dice2. When I call dice1.Value=dice1.Roll(); and dice2.Value=dice2.Roll();
It always give me two same numbers! Now I'm thinking to take my laptop to some casino or something. We can't lose...
Like I sais I've tried this on several more ways, but nothing. Please tell me what's wrong here