C# Professional - Basics & OOP - Exercises
Open Source Your Knowledge, Become a Contributor
Technology knowledge has to be shared and made accessible for free. Join the movement.
Value Types - Arguments by value / reference
Pass argument by reference
1
2
3
9
10
11
12
13
14
15
16
17
18
19
·using System;
// {...}
private static void Increment(int value)
{
value = value + 1;
}
public static int ExecuteIncrement(int value)
{
Increment(value);
return value;
}
// {...}
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX
Suggested playgrounds
Open Source Your Knowledge: become a Contributor and help others learn.
Create New Content