Difference between ByVal and ByRef?

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


Please Help Members By Posting Answers For Below Questions

Define a class and an object?

711


What is difference between assembly and namespace?

635


What is event delegate in c#?

796


Is list a collection c#?

712


What is extended class in c#?

664


What does writeline mean?

688


What is difference between ienumerable and enumerable in c#?

637


Is string nullable in c#?

654


Explain About namespaces

744


What is the use of ienumerable?

623


Define MSIL, and how does it works? Why our developers need an appreciation of it if at all?

700


What is application object in c#?

670


What is the use of tuple in c#?

673


What is web forms in c#?

665


What do constructors do in c#?

653