Home » C# Call By Reference

C# Call By Reference

by Online Tutorials Library

C# Call By Reference

C# 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 Example

Output:

Value before calling the function 50 Value inside the show function 2500 Value after calling the function 2500 

Next TopicC# Out Parameter

You may also like