Year End Sale: Get Upto 40% OFF on Live Training! Offer Ending in
D
H
M
S
Get Now
Difference between ref and out parameters

Difference between ref and out parameters

23 May 2024
Intermediate
314K Views
6 min read
Learn with an interactive course and practical hands-on labs

Free C# Foundation Course: Learn C# In 21 Days

ref and out parameters: An Overview

Ref and out parameters are used to pass an argument within a method. Actually, Both parameters indicate that an argument/parameter is passed by reference. By default, parameters are passed to a method by value. By using these keywords we can pass a parameter by reference. In this C# Tutorial, We will explore the ref and out which will include what are ref and out parameters in C#, The difference between ref and out parameters, and when to use ref and out parameters.

Ref

  • The ref keyword is used to pass an argument as a reference.
  • This means that when the value of that parameter is changed in the method.
  • It gets reflected in the calling method.
  • An argument that is passed using a ref keyword must be initialized in the calling method before it is passed to the called method.

Out

  • The out keyword is also used to pass an argument like the ref keyword.
  • But the argument can be passed without assigning any value to it.
  • An argument that is passed using an out keyword must be initialized in the called method before it returns back to the calling method.

Program with the ref and out keyword

Let's Elaborate ref and out parameters in C# Compiler with its example:

 public class Example
{
 public static void Main() //calling method
 {
 int val1 = 0; //must be initialized 
 int val2; //optional

 Example1(ref val1);
 Console.WriteLine(val1); // val1=1

 Example2(out val2);
 Console.WriteLine(val2); // val2=2
 }

 static void Example1(ref int value) //called method
 {
 value = 1;
 }
 static void Example2(out int value) //called method
 {
 value = 2; //must be initialized 
 }
}

 

Output

 
1
2
    

Note

  1. Do not be confused with the concept of passing by reference and the concept of reference type. These two concepts are not the same.

  2. A value type or a reference type can be passed to the method parameter by using the ref keyword. There is no boxing of a value type when it is passed by reference.

  3. Properties cannot be passed to ref or out parameters since internally they are functions and not members/variables.

Read More - C Sharp Interview Questions

Ref and out-in method overloading

Both ref and out cannot be used in method overloading simultaneously. However, ref and out are treated differently at run-time but they are treated same at compile time (CLR doesn't differentiates between the two while it created IL for ref and out). Hence methods cannot be overloaded when one method takes a ref parameter and other method takes an out parameter. The following two methods are identical in terms of compilation.

 class MyClass
{
 public void Method(out int a) // compiler error “cannot define overloaded”
 {
 // method that differ only on ref and out"
 }
 public void Method(ref int a) 
 {
 // method that differ only on ref and out" 
 }
} 

However, method overloading can be done, if one method takes a ref or out argument and the other method takes a simple argument. The following example is perfectly valid to be overloaded.

 class MyClass
{
 public void Method(int a) 
 {

 }
 public void Method(out int a)
 {
 // method differ in signature.
 }
}

Ref Vs Out: The Difference

 difference between ref and out parameters in C#
Conclusion:

I hope you will enjoy the ref and out keywords while programming with C#. I would like to have feedback from my blog readers. Your valuable feedback, questions, or comments about this article are always welcome. Also, consider our C# Programming Course for a better understanding of C# concepts.

FAQs

It is nothing but The address (not the value) of an argument is automatically passed to the function.

a ref parameter must be initialized before it is passed, while an out parameter does not need to be.

In a method signature and in a method call, to pass an argument to a method by reference

It is used for the passing the arguments to methods as a reference type

Take our Csharp skill challenge to evaluate yourself!

In less than 5 minutes, with our skill challenge, you can identify your knowledge gaps and strengths in a given skill.

GET FREE CHALLENGE

Share Article
About Author
Shailendra Chauhan (Microsoft MVP, Founder & CEO at Scholarhat by DotNetTricks)

Shailendra Chauhan, Founder and CEO of ScholarHat by DotNetTricks, is a renowned expert in System Design, Software Architecture, Azure Cloud, .NET, Angular, React, Node.js, Microservices, DevOps, and Cross-Platform Mobile App Development. His skill set extends into emerging fields like Data Science, Python, Azure AI/ML, and Generative AI, making him a well-rounded expert who bridges traditional development frameworks with cutting-edge advancements. Recognized as a Microsoft Most Valuable Professional (MVP) for an impressive 9 consecutive years (2016–2024), he has consistently demonstrated excellence in delivering impactful solutions and inspiring learners.

Shailendra’s unique, hands-on training programs and bestselling books have empowered thousands of professionals to excel in their careers and crack tough interviews. A visionary leader, he continues to revolutionize technology education with his innovative approach.
Accept cookies & close this