If you want to return multiple outputs from a function you will use the OUT keyword.
In Out key, When we passed variables as out
arguments that time we initialized the variables within the methods. It is
also known as the output parameter.
Ref keyword is a one-way communication while the out keyword is two-way communication.
Ref keyword is a one-way communication while the out keyword is two-way communication.
- Initialized must be inside the methods.
- Before calling the methods may be initialized or not initialized the values of the variables.
public class OutClass
{
static void Method(int a, int b, out int add)
{
add = a+b;
}
static void Main()
{
int add=0;
Method(10, 10, out add);
}
}
Some important notes as given below
- The ref and out keywords are treated differently at run-time but they are treated the same at compile time.
- Methods cannot be overloaded if one method takes a ref keyword and the other takes an out keyword.