21
1
using System;
2
3
public class Program
4
{
5
static void byOut(out int x, out int y)
6
{
7
x = 5;
8
y = 42;
9
}
10
11
public void Main(string[] args)
12
{
13
int a = 50;
14
int b = 420;
15
16
byOut(out a, out b);
17
18
Console.WriteLine(a);
19
Console.WriteLine(b);
20
}
21
}
Cached Result