美好的一天!我想在路径中随机输出图片然后它有一张图片。我目前正在做我的游戏作业。这是一个猜谜游戏,用户会猜到一个单词我想用线索给用户使用图片和有时描述,我将如何与相关单词一起得到图片。我已经在一个字符串中声明了猜词,并将其随机化。
string[] movie = { "avengers",
"deadpool",
"titanic",
"thenotebook",
"IronMan",
"HarryPotter",
"LordoftheRings",
"HungerGames"};
string word = sports[r.Next(0, words.Length)].ToUpper();
Array.ForEach(this.Controls.OfType<Label>().ToArray(), lbl => lbl.Dispose());
Array.ForEach(alphabetButtons, b => b.Enabled = true);
labels = new List<Label>();
int startX = 14;
并且我不知道我将要做的下一步是什么。