Function Parameters

This lesson covers function parameters and explains why parameters are always copied.

Function parameters #

Some of the concepts of this chapter have already appeared earlier in the course. For example, the ref keyword that we saw in the foreach loop lesson was making actual elements available in foreach loops as opposed to copies of those elements. ...