What are different methods of passing parameters in C#?
Answers
Answered by
0
Image result for What are different methods of passing parameters in C#?
Any modifications to the formal parameter variable inside the called function or method affect only the separate storage location and will not be reflected in the actual parameter in the calling environment. This method is also called as call by value. Languages like C, C++, Java support this type of parameter passing.
Answered by
0
There are different ways in which parameter data can be passed into and out of methods and functions. Let us assume that a function B() is called from another ...
Similar questions