C# Call By ReferenceC# provides a ref keyword to pass argument as reference-type. It passes reference of arguments to the function rather than copy of original value. The changes in passed values are permanent and modify the original variable value. C# Call By Reference ExampleOutput: Value before calling the function 50 Value inside the show function 2500 Value after calling the function 2500 Next TopicC# Out Parameter |
We provides tutorials and interview questions of all technology like java tutorial, android, java frameworks
G-13, 2nd Floor, Sec-3, Noida, UP, 201301, India