すごい具体的なタイトルを書いたけど、例えば以下のような紐付けを、どうやったらランダム化出来るか考えてみたって話。
[C#]
//4択クイズの回答ボタンセット
button1.Text = nowQ["Choice1"].ToString();
button2.Text = nowQ["Choice2"].ToString();
button3.Text = nowQ["Choice3"].ToString();
button4.Text = nowQ["Choice4"].ToString();
これを、
[C#]
//4択クイズの回答ボタンセット
button1.Text = nowQ["Choice4"].ToString();
button2.Text = nowQ["Choice1"].ToString();
button3.Text = nowQ["Choice3"].ToString();
button4.Text = nowQ["Choice2"].ToString();
結果的にランダムに紐付けたい。
思いつく限りスムーズに
とか考えてたんだけど…
[C#]
//4択クイズの回答ボタンセット
var choices = new List(){ "Choice1", "Choice2", "Choice3", "Choice4" };
Random random = new Random();
int index = random.Next(choices.Count);
button1.Text = nowQ[choices[index]].ToString();
choices.RemoveAt(index);
index = random.Next(choices.Count);
button2.Text = nowQ[choices[index]].ToString();
choices.RemoveAt(index);
index = random.Next(choices.Count);
button3.Text = nowQ[choices[index]].ToString();
choices.RemoveAt(index);
index = random.Next(choices.Count);
button4.Text = nowQ[choices[index]].ToString();
なんか違う…
クソみたいに見難いコードになってしまった。
誰か良い感じのやり方を教えてください。