Answer Posted / bhaskar
ByVal means only the value is passed to the calling function
but.. modifications will not reflect the original value..
ByRef means the address where the value stored is passes to
the calling function so the modifications made are reflected
to the original value..
| Is This Answer Correct ? | 10 Yes | 0 No |
Post New Answer View All Answers
What is yield return in c#?
What is the use of static in c#?
When would you use generics in your code c#?
Explain how to implement an object pool in c#.net
What does out mean in c#?
What are generic types?
Why are strings immutable in c#?
Explain the difference between proc. Sent by val and by sub?
How many constructors can a class have in c#?
Is string nullable c#?
What is the difference between class and namespace?
Is list a collection c#?
List out two different types of errors in c#?
What is an inheritance in c#?
What is difference between float and decimal?