This commit is contained in:
2024-07-09 11:12:40 +09:00
parent 671bf91e86
commit f30be2b20a
5 changed files with 209 additions and 4 deletions

View File

@@ -22,6 +22,8 @@
"Good Vibrations", "Smells Like Teen Spirit", "What's Going On", "Hotel California", "One"
};
songs = songs.OrderBy(s => Guid.NewGuid()).ToList();
var hitSongs = new List<string>();
for (int i = 0; i < 5; i++)
{
@@ -40,6 +42,8 @@
"Led Zeppelin", "Pink Floyd", "Queen", "The Rolling Stones", "U2"
};
singers = singers.OrderBy(s => Guid.NewGuid()).ToList();
var randomSingers = new List<string>();
for (int i = 0; i < 5; i++)
{