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 does dll hell solve in .net?
What do you mean by hashtable c#?
Can abstract class have private constructor c#?
What are delegates?
What is difference between list and ilist in c#?
Is arraylist faster than linkedlist?
What does assert() do in c#?
What is dictionary and hashtable in c#?
I want to print "Hello" even before main() is executed. How will you achieve that?
What does dbml stand for?
What are the Types of caching
Define strong name in c#?
Is c# pass by reference?
What are the advantages of properties in c#?
How garbage collection deals with circular references.