我正在使用以下代碼來生成隨機顏色。將隨機生成的值鏈接到列表對象
static Color[] colors = { Color.Red, Color.Green, Color.Yellow};
static Color GetRandomColor()
{
var random = new Random();
return colors[random.Next(colors.Length)];
}
現在我需要關聯到用戶的列表:
List<Utente> ListaUtente = new List<Utente>();
ListaUtente.Add(new Utente(22, "Pedro", 555444333, "[email protected]"));
ListaUtente.Add(new Utente(22, "Lucas", 555444333, "[email protected]"));
ListaUtente.Add(new Utente(22, "Rodrigo", 555444333, "[email protected]"));
ListaUtente.Add(new Utente(22, "Gaspar", 555444333, "[email protected]"));
ListaUtente.Add(new Utente(22, "Assis", 555444333, "[email protected]"));
並在屏幕上一樣顯示出來:用戶1 - 紅, 用戶2 - 格林等
什麼最簡單的方法來做到這一點?我不知道如何連接這兩個代碼塊。只是爲了給你一些背景我在做一個醫院管理服務,我需要爲每個用戶分配一個緊急顏色。
這是winforms,WPF,ASP.NET,控制檯......? –
添加顏色屬性到'Utente'? –
製作一個List>而不是'List '? –