Код: Выделить всё
public class Huh
{
static public void Main()
{
Console.Write("Enter Id :");
id(Convert.ToInt32(Console.ReadLine()));
}
static string id(int idnum)
{
string stuname;
switch (idnum)
{
case 001:
stuname = "Amir";
break;
default:
stuname = "invalid id ";
break;
}
return stuname;
}
}
Подробнее здесь: https://stackoverflow.com/questions/792 ... le-but-wor
Мобильная версия