Home > Article > Backend Development > How are parameters passed in C#?
Parameters are passed by value or reference in C#. This way, you can also pass parameters using out parameters and param arrays -
This method copies the actual value of the parameter into the formal parameter of the function. In this case, changes made to the formal parameters inside the function have no effect on the actual parameters.
This method copies the reference to the memory location of the actual parameter into the formal parameter. This means that changes made to the parameters affect the parameters.
The return statement can be used to return only a value from a function. However, using output parameters you can return two values from the function. Output parameters are similar to reference parameters, except they pass data out of a method instead of into it.
When declaring a method, you are not sure of the number of parameters passed as parameters. The C# param array gives you an idea of this.
Here is a complete example to learn how to implement param in C# -
using System; namespace Program { class ParamArray { public int AddElements(params int[] arr) { int sum = 0; foreach (int i in arr) { sum += i; } return sum; } } class Demo { static void Main(string[] args) { ParamArray app = new ParamArray(); int sum = app.AddElements(300, 250, 350, 600, 120); Console.WriteLine("The sum is: {0}", sum); Console.ReadKey(); } } }
The above is the detailed content of How are parameters passed in C#?. For more information, please follow other related articles on the PHP Chinese website!