Код: Выделить всё
using System;
public class HelloWorld
{
public static void Main(string[] args)
{
int a = 1;
FuncTrain(a);
Console.WriteLine("a = " + a);
}
static int FuncTrain(int a)
{
a = 10;
return a;
}
}
1
А не это:
10
Подробнее здесь: https://stackoverflow.com/questions/793 ... r-function
Мобильная версия