19
1
using System;
2
3
public class Program
4
{
5
public static void Main()
6
{
7
int getal = 5;
8
9
Optellen(getal);
10
11
Console.WriteLine(getal);
12
}
13
14
public static void Optellen(int getal){
15
16
getal = getal + 1;
17
18
}
19
}
Cached Result
2017
06/09/2017 12:00
06/09/2017 12:00