DZone Snippets is a public source code repository. Easily build up your personal collection of code snippets, categorize them with tags / keywords, and share them with the world
Swithc Case: Seletion Statement With Choice Of Constants
Swithc case: Selection statement with choice of constants
int standard = 10;
switch (standard)
{
case 11:
Console.WriteLine("Standard Eleven");
break;
case 10:
Console.WriteLine("Standard Ten");
break;
}





