是否有.NET替換代碼的方式,其中的間隔像有沒有一種優雅的方法可以在處理間隔時通過開關等東西來取代?
if (compare < 10)
{
// Do one thing
}
else if (10 <= compare && compare < 20)
{
// Do another thing
}
else if (20 <= compare && compare < 30)
{
// Do yet another thing
}
else
{
// Do nothing
}
的東西更優雅像switch語句相比,(我想在Javascript中「的情況下(< 10)」的作品,但在C# )?其他人是否也覺得這個代碼很醜陋?
真 - 爲什麼沒有R·看?爲什麼我不是? – Olaf 2011-03-18 14:40:47