Pass parameters

In this chapter you will learn:

  1. How Arguments Are Passed
  2. Parameter modifiers

How Arguments Are Passed

  • Call-by-value
    Copy the value of an argument into the formal parameter. Change made to the parameter have no effect on the argument used in the call.
  • Call-by-reference
    A reference to an argument is passed to the parameter. Change made to the parameter will affect the argument used to call the subroutine.

When you pass a value type, such as int or double, to a method, it is passed by value. An object is passed by reference

Parameter modifiers

Parameter modifier Passed by Variable must be definitely assigned
None Value Going in
ref Reference Going in
out Reference Going out
params sends in a variable number of arguments as a single logical parameter.

Next chapter...

What you will learn in the next chapter:

  1. Use ref to pass a value type by reference
  2. Swap two values
  3. Swap two references
  4. Change string using ref keyword
Home » C# Tutorial » Class
Classes and Structs
Encapsulation
Class and Struct Accessibility
Members
Static Members
Class
Class instance variables
Class instance Methods
Class Inheritance
Class constructor
Default constructors
Parameters of constructors
Constructor overloading
Static Constructor
Destructor
Override destructor
new operator
Class field
Static Fields
Read only field
Field default value
const value
Abstract class
Static Class
Partial type
Methods
Method local variable
Method Overloading
Method overloading with ref and out
Type conversion and method overloading
Error in Method overloading
virtual methods
Override methods
Method Parameter
Pass parameters
ref parameters
out parameters
Variable parameter length
Optional parameters
Named parameters
static method
function Return
Recursive methods
Virtual methods and polymorphism
Cast
Shadow inherited members
Seal a member
this keyword
base keyword
base and name hiding
Access Specifiers
private
public
protected
internal
Indexer
String type indexer
Multidimensional indexer
Indexer overloading
Indexer to append
Indexer logic
Properties
Properties getter and setter
Accessibilities of properties
Automatic properties
Read only and write only property
Virtual properties
Abstract Properties
Static Properties
interface
interface implementation
Explicit interface implementation
Interface inheritance
Indexer in an interface
Interface Properties
struct and interface
virtual interface implementation
as operator
is operator
null reference
Nested classes
object class
ToString method
GetHashCode
Object initialization
Extension method
Struct Instances vs. Class Instances