Skip to main content

Passing Parameters by Value and Reference with Example in C#

 Passing Parameters by Value and Reference with Example in C#

Passing a Value-Type parameter to a method by value means passing a copy of the variable to the method. So the changes made to the parameter inside of the called method will not have an effect on the original data stored in the argument variable.

 In C#, Value-Type variable contain the value directly on its memory and Reference-Type variable will contain a reference of its data.

 Passing Parameters by Value Example in C#

Following is the example of passing a value type parameter to a method by value in C#.

 

static void Main(string[] args)

        {

            int x = 10;

            Console.WriteLine($"Variable Value Before Calling the Method: {x}");

            Multiplication(x);

            Console.WriteLine($"Variable Value After Calling the Method: {x}");

                      

            Console.WriteLine("\nPress Enter Key to Exit..");

            Console.ReadLine();

 

        }

        public static void Multiplication(int y)

        {

            y *= y;

            Console.WriteLine($"Variable Value Inside the Method: {y}");

        }

  

From the above example, the variable x is a value type and its passed to the Multiplication method. The content of variable x copied to the parameter y and made required modifications in the Multiplication method but the changes made inside of the method have no effect on the original value of the variable.

 

Value Type

 


When we execute the above C# program, we will get the result as shown above.

 

 

From above result, the variable value not changed even after we made the modifications in our method.

 

Pass parameter by Reference (ref) in C#

 

Passing a value type parameter to a method by reference means passing a reference of the variable to the method. So the changes made to the parameter inside of the called method will have an effect on the original data stored in the argument variable.

 

By using the ref keyword, we can pass parameters reference-type and it’s mandatory to initialize the variable value before we pass it as an argument to the method in C#.

 

Declaration of C# Pass By Reference

The following is a simple example of passing parameters by reference in C#.

 

int r = 10; // Variable need to be initialized

Multiplication(ref r);

 

If we observe the above declaration, we declared and assigned a value to the variable r before we pass it as an argument to the method by using reference (ref).

 

To use the ref parameter in C# application, both the method definition and the calling method must explicitly use the ref keyword.

 

Passing Parameters by Reference Example in C#

 

The code below is an example of passing a value type parameter to a method by reference in C#.

 

 static void Main(string[] args)

        {

            int x = 10;

            Console.WriteLine($"Variable Value Before Calling the Method: {x}");

            Multiplication(ref x);

            Console.WriteLine($"Variable Value After Calling the Method: {x}");

                      

            Console.WriteLine("\nPress Enter Key to Exit..");

            Console.ReadLine();

 

        }

        public static void Multiplication(ref int y)

        {

            y *= y;

            Console.WriteLine($"Variable Value Inside the Method: {y}");

        }

From the above example, we are passing the reference of variable x to the variable y in Multiplication method by using the ref keyword. In this case, the variable contains the reference of variable x so the changes that made to the variable y will affect the value of variable x.

 

Reference Type


 

When we execute the above c# program, we will get the result as shown above.

 

If we observe the above result, the changes that we did for the variable in the called method have reflected in the calling method also.


References

1.    Tutlane

2.    Tutorial Teachers

Comments

Popular posts from this blog

Collections in C#

Collections in C# In our previous article , we have learned about how we can use arrays in C#. Arrays in programming are used to group a set of related objects. So one could create an array or a set of Integers, which could be accessed via one variable name. What is Collections in C#? Collections are similar to Arrays, it provides a more flexible way of working with a group of objects. In arrays, you would have noticed that you need to define the number of elements in an array beforehand. This had to be done when the array was declared. But in a collection, you don't need to define the size of the collection beforehand. You can add elements or even remove elements from the collection at any point of time. This article will focus on how we can work with the different collections available in C#. There are three distinct collection types in C#: standard generic concurrent The standard collections are found under the System.Collections. They do not store elemen...

The String.Join Method in C# Explained

The String.Join Method in C#   The string.Join concatenates the elements of a specified array or the members of a collection, using the specified separator between each element or member. Overloads of string.Join Method Description Join(Char, Object[]) Concatenates the string representations of an array of objects, using the specified separator between each member. Join(Char, String[]) Concatenates an array of strings, using the specified separator between each member. Join(String, IEnumerable<String>) Concatenates the members of a constructed IEnumerable<T> collection of type String, using the specified separator between each member. Join(String, Object[]) Concatenates the elements of an object array, using the specified separator between each element. Join(String, String[]) Concatenates all the elements of a string array, usi...

System.IO Namesapce in C#

  System.IO Namesapce in C# A  file  is a collection of data stored in a disk with a specific name and a directory path. When a file is opened for reading or writing, it becomes a  stream . The stream is basically the sequence of bytes passing through the communication path. There are two main streams: the  input stream  and the  output stream . The  input stream  is used for reading data from file (read operation) and the  output stream  is used for writing into the file (write operation). From the above definition of file, the C# provides a namespace that enable us to manipulate file in C# called System.IO.   System.IO  is a  namespace  and it contains a standard IO (input/output) types such as classes , structures , enumerations , and  delegates  to perform a read/write operations on different sources like file, memory, network, etc.   System.IO Classes The table below shows differen...