Passing Parameters By Value and By Ref : Parameters Passing « Language Basics « C# / C Sharp

Home
C# / C Sharp
1.2D Graphics
2.Class Interface
3.Collections Data Structure
4.Components
5.Data Types
6.Database ADO.net
7.Design Patterns
8.Development Class
9.Event
10.File Stream
11.Generics
12.GUI Windows Form
13.Language Basics
14.LINQ
15.Network
16.Office
17.Reflection
18.Regular Expressions
19.Security
20.Services Event
21.Thread
22.Web Services
23.Windows
24.Windows Presentation Foundation
25.XML
26.XML LINQ
C# / C Sharp by API
C# / CSharp Tutorial
C# / CSharp Open Source
C# / C Sharp » Language Basics » Parameters PassingScreenshots 
Passing Parameters By Value and By Ref
Passing Parameters By Value and By Ref

/*
 * C# Programmers Pocket Consultant
 * Author: Gregory S. MacBeth
 * Email: gmacbeth@comporium.net
 * Create Date: June 27, 2003
 * Last Modified Date:
 */
using System;

namespace Client.Chapter_5___Building_Your_Own_Classes
{
  public class PassingParametersByValueandByRef
  {
    static void Main(string[] args)
    {
      int MyInt = 5;

      MyIntArray = new int[10];
      ObjectCount++;
      Method2();
      Method2(12);
      MyMethodRef(ref MyInt);
      Method2(new int[] { 123});
    }
    static private int MyInt = 5;
    static public int MyInt2 = 10;
    static public int[] MyIntArray;
    private static int ObjectCount = 0;
    static public int MyMethodRef(ref int myInt)
    {
      MyInt = MyInt + myInt;
      return MyInt;
    }
    static public int MyMethod(int myInt)
    {
      MyInt = MyInt + myInt;
      return MyInt;
    }
    static private long MyLongMethod(ref int myInt)
    {
      return myInt;
    }
    static public void Method2(params int[] args)
    {
      for (int I = 0; I < args.Length; I++)
        Console.WriteLine(args[I]);
    }
  }
}

           
       
Related examples in the same category
1.Parameter out and referenceParameter out and reference
2.Objects can be passed to methodsObjects can be passed to methods
3.Simple types are passed by valueSimple types are passed by value
4.Objects are passed by referenceObjects are passed by reference
5.Use ref to pass a value type by referenceUse ref to pass a value type by reference
6.Swap two valuesSwap two values
7.Use outUse out
8.Use two out parametersUse two out parameters
9.Swap two referencesSwap two references
10.Demonstrate paramsDemonstrate params
11.Use regular parameter with a params parameterUse regular parameter with a params parameter
12.Parameter demoParameter demo
13.Passing parameters by referencePassing parameters by reference
14.Passing parameters by valuePassing parameters by value
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
www.java2java.com | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.