a575963da9
Former-commit-id: da6be194a6b1221998fc28233f2503bd61dd9d14
26 lines
387 B
C#
26 lines
387 B
C#
using System;
|
|
|
|
public class X
|
|
{
|
|
public readonly int Data;
|
|
|
|
public X testme (out int x)
|
|
{
|
|
x = 1;
|
|
return this;
|
|
}
|
|
|
|
public X ()
|
|
{
|
|
int x, y;
|
|
|
|
y = this.testme (out x).Data;
|
|
Console.WriteLine("X is {0}", x);
|
|
}
|
|
|
|
public static void Main ()
|
|
{
|
|
X x = new X ();
|
|
}
|
|
}
|