what is reference parameter?
what is out parameters?
what is difference these two?
Answer Posted / piyush sharma
The main difference between them is ref parameter act as
input/output whereas out parameter is simply act as output.
Let us understand with an example:
Out parameters "out" parameters are output only parameters
meaning they can only passback a value from a function.We
create a "out" parameter by preceding the parameter data
type with the out modifier. When ever a "out" parameter is
passed only an unassigned reference is passed to the
function.
using System;
class Test
{
static void out_test(out int x)
{
x=100;
}
static void Main()
{
int Myvalue=5;
MyMethod(Myvalue);
Console.WriteLine(out Myvalue);
}
}
Output of the above program would be 100 since the value of
the "out" parameter is passed back to the calling part.
Note
The modifier "out" should precede the parameter being
passed even in the calling part. "out" parameters cannot be
used within the function before assigning a value to it. A
value should be assigned to the "out" parameter before the
method returns.
Ref parameters "ref" parameters are input/output parameters
meaning they can be used for passing a value to a function
as well as to get back a value from a function.We create
a "ref" parameter by preceding the parameter data type with
the ref modifier. When ever a "ref" parameter is passed a
reference is passed to the function.
using System;
class Test
{
static void Mymethod(ref int x)
{
x=x+ 100;
}
static void Main()
{
int Myvalue=5;
MyMethod(Myvalue);
Console.WriteLine(ref Myvalue);
}
}
Output of the above program would be 105 since the "ref"
parameter acts as both input and output.
Note
The modifier "ref" should precede the parameter being
passed even in the calling part. "ref" parameters should be
assigned a value before using it to call a method.
| Is This Answer Correct ? | 19 Yes | 4 No |
Post New Answer View All Answers
How do you comment in c#?
Explain types of comment in c# with examples
Explain about Error handling and how this is done
Write a program to create a user control with name and surname as data members and login as method and also the code to call it. (Hint use event delegates) Practical Example of Passing an Events to delegates
Can partial class be inherited?
Why do we use abstract class in c#?
Explain the difference between class and interface in .net?
Explain manifest & metadata in c#.
Why do we need reflection in c#?
What is the use of 'using' statement in c#?
What is a struct in C#?
What is protected internal modifier in C#?
What Is An Interface Class?
What is a delegate? How can it works?
What are the Types of configuration files and their differences