What are the two keywords used to pass a variable by
reference in c#?
Answers were Sorted based on User's Feedback
Answer / sreekanth m
Two keywords are "ref" and "out".
the difference between them are: In the case of "ref", the
passed argument should be initialized first whereas
for "out", its not mandatory.
Is This Answer Correct ? | 10 Yes | 1 No |
Answer / pramod singh
A variable of a reference type does not contain its data
directly; it contains a reference to its data. When you pass
a reference-type parameter by value, it is possible to
change the data pointed to by the reference, such as the
value of a class member. You cannot change the value of the
reference itself; that is, you cannot use the same reference
to allocate memory for a new class and have it persist
outside the block. To do that, pass the parameter using the
ref (or out) keyword. For simplicity, the following examples
use ref.
Is This Answer Correct ? | 5 Yes | 0 No |
What is cache memory in c#?
What is a callback c#?
Explain how is the dll hell problem solved in .net?
is it possible to inherit a class but methods declared in the class should not be inheritable i possible how?
What is verbatim literal in c#?
What are the advantages of using assemble language programming?
Give examples for value types?
What is instantiating a class in c#?
Explain partial class in c#?
Can you create sealed abstract class in c#?
Is object an int c#?
What is use of abstract class in c#?