OBS: download the application please visit www.mrbool.com/player
Author: Ayad Boudiab
Title: Visual Studio C# - Passing Parameters.
Duration: 15:18 min
Description:
This video discusses passing parameters to C# methods. Some methods can do their work
without needing assitional information. Other methods, however, need additional data
to do their work. When passing data to methods, a developer need to consider whether
the data will be modified or not. If the parameter (data) is not going to be modified,
it is passed by value. Otherwise, it is passed by reference. This video will discuss
both types and give examples when to use one or the other.