public class testref
{
public int x;
public int y;
public int z;
public testref()
{
x = 3;
y = 4;
}
public testref(int c):this()
{
z = c;
}
}