Passing parameters by value : Parameters Passing « Language Basics « C# / C Sharp






Passing parameters by value

Passing parameters by value
/*
Mastering Visual C# .NET
by Jason Price, Mike Gunderloy

Publisher: Sybex;
ISBN: 0782129110
*/

/*
  Example5_6.cs illustrates passing parameters by value
*/


// declare the Swapper class
class Swapper
{

  // the Swap() method swaps parameters passed by value
  public void Swap(int x, int y)
  {

    // display the initial values
    System.Console.WriteLine("In Swap(): initial x = " + x +
      ", y = " + y);

    // swap x and y
    int temp = x;
    x = y;
    y = temp;

    // display the final values
    System.Console.WriteLine("In Swap(): final   x = " + x +
      ", y = " + y);
  }

}


public class Example5_6
{

  public static void Main()
  {

    // declare x and y (the variables whose values
    // are to be swapped)
    int x = 2;
    int y = 5;

    // display the initial values
    System.Console.WriteLine("In Main(): initial x = " + x +
      ", y = " + y);

    // create a Swapper object
    Swapper mySwapper = new Swapper();

    // swap the values in x and y
    mySwapper.Swap(x, y);

    // display the final values
    System.Console.WriteLine("In Main(): final   x = " + x +
      ", y = " + y);

  }

}

           
       








Related examples in the same category

1.Parameter out and referenceParameter out and reference
2.Passing Parameters By Value and By RefPassing Parameters By Value and By Ref
3.Objects can be passed to methodsObjects can be passed to methods
4.Simple types are passed by valueSimple types are passed by value
5.Objects are passed by referenceObjects are passed by reference
6.Use ref to pass a value type by referenceUse ref to pass a value type by reference
7.Swap two valuesSwap two values
8.Use outUse out
9.Use two out parametersUse two out parameters
10.Swap two referencesSwap two references
11.Demonstrate paramsDemonstrate params
12.Use regular parameter with a params parameterUse regular parameter with a params parameter
13.Parameter demoParameter demo
14.Passing parameters by referencePassing parameters by reference
15.Illustrates the use of out parametersIllustrates the use of out parameters
16.Pass value by referencePass value by reference
17.Pass value by reference with read only valuePass value by reference with read only value
18.Ref and Out Parameters: compiling error
19.C# Ref and Out ParametersC# Ref and Out Parameters
20.Ref and Out Parameters 2Ref and Out Parameters 2