what is the difference between passing a value object by
reference and a reference object by value?
Answer Posted / ashish diwakar
Value Objects are the objects that contain the data as
objects such int, string, etc...
Reference Objects are the objects that contain the data as
reference such as StringBuilder,etc...
When a Value object is passed as reference the reference of
the object is passed to the method (which means that any
change made to variable will be reflected on the original
variable).
But when a Reference Object is passed by value Like :
StringBuilder sb =new StringBuilder();
sb.Append("hello");
Display(sb);
any change made on sb inside Display function will not
change value of sb.
Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers
What is lazy t?
What is action in c# 3.5?
How do you sort an array in c#?
What is code verification?
What is the .net datatype that allows the retrieval of data by a unique key?
List the fundamental oop concepts?
Is c# still popular?
Explain about finalize method?
Is equal in c#?
What is difference between ienumerable and list in c#?
Is java better than c#?
Are there functions in c#?
Which is better interface or abstract class in c#?
What method is used to sort the elements of the array in descending order?
What are class fields?