9 Console
.WriteLine ("In ctor val is: {0}", val
);
10 Console
.WriteLine ("In ctor str is: {0}", str
);
13 MyType (int v
, byte[] array
) {
14 Console
.WriteLine ("In ctor (int, byte[]) got value: {0}, array len: {1}", v
, array
.Length
);
18 Console
.WriteLine ("In method val is {0}", val
);
19 Console
.WriteLine ("In method str is: {0}", str
);
34 void Values (ref int v
, ref string s
) {
35 Console
.WriteLine ("In Values () v is {0}", v
);
36 Console
.WriteLine ("In Values () s is: {0}", s
);
42 throw new Exception ();
46 /* we do nothing here... */