What are the two keywords used to pass a variable by
reference in c#?
Answer Posted / 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 |
Post New Answer View All Answers
Which is executed if an exception has not occurred?
Why is c# used?
Can abstract class be sealed?
Can you instantiate a struct without using a new operator in c#?
Why we use get set in c#?
How do you type a null character?
What is verbatim literal in c#?
What is the best dependency injection c#?
What is the use of ispostback in c#?
Hi to all..I have to create an intranet application on C#.NET windows Application so please please let can you people help me as iam new in .NET and if u have any samples or website address from where i can get sample please let know.
What is a collection in c#?
What is whitespace in c#?
Okay, so an int is a value type, and a class is a reference type. How can int be derived from object?
Is the following code legal?
Can a class or a struct have multiple constructors?