Mega Code Archive

 
Categories / C# / Language Basics
 

Ref and Out Parameters 2

using System; class Point {     public Point(int x, int y)     {         this.x = x;         this.y = y;     }          public void GetPoint(out int x, out int y)     {         x = this.x;         y = this.y;     }          int x;     int y; } public class RefOutParameters3 {     public static void Main()     {         Point myPoint = new Point(10, 15);         int x;         int y;                  myPoint.GetPoint(out x, out y);         Console.WriteLine("myPoint({0}, {1})", x, y);     } }