Answer Posted / ashwini
When arguments are passed to a method ByVal i.e. By Value
then the original value of a variable is not passed but its
copy is created and that copy is passed. So whatever
changes are made, they will affect the copy but not the
original value of a variable.
When arguments are passed ByRef i.e. By Reference
then the argument's memory location is passed to a method.
So changes made to that argument's value will actually
affect the original value.
Is This Answer Correct ? | 31 Yes | 1 No |
Post New Answer View All Answers
Define a class and an object?
What is difference between assembly and namespace?
What is event delegate in c#?
Is list a collection c#?
What is extended class in c#?
What does writeline mean?
What is difference between ienumerable and enumerable in c#?
Is string nullable in c#?
Explain About namespaces
What is the use of ienumerable?
Define MSIL, and how does it works? Why our developers need an appreciation of it if at all?
What is application object in c#?
What is the use of tuple in c#?
What is web forms in c#?
What do constructors do in c#?