16
1
using System;
2
3
public class Program
4
{
5
public static void OutSample( out int i )
6
{
7
i=20;
8
}
9
public static void Main()
10
{
11
int no;
12
OutSample( out no );
13
Console.WriteLine("Value for the number is: " +no );
14
15
}
16
}
Cached Result