Passing Parameters by Value : ref « Language Basics « C# / CSharp Tutorial






public class Swapper {
    public void Swap(int x, int y) {
        System.Console.WriteLine("In Swap(): initial x = " + x + ", y = " + y);

        int temp = x;
        x = y;
        y = temp;

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


class MainClass {

    public static void Main() {

        int x = 2;
        int y = 5;

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

        Swapper mySwapper = new Swapper();

        mySwapper.Swap(x, y);

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

    }

}








1.11.ref
1.11.1.Use ref to pass a value type by reference
1.11.2.Swap two values
1.11.3.Swap two references.
1.11.4.Use out for reference type
1.11.5.Use ref for int value
1.11.6.Use ref for reference type
1.11.7.Change string using ref keyword
1.11.8.Passing Parameters by Value