Exemplo n.º 1
0
 public void ValueRef_2_BoxingRef(ref ArgumentTypes.Value p)
 {
     Console.WriteLine("ok");
 }
Exemplo n.º 2
0
 public void Value_2_ValueRef(ArgumentTypes.Value p)
 {
     Console.WriteLine("ok");
 }
Exemplo n.º 3
0
 public static void To_ValueRef(ref ArgumentTypes.Value p)
 {
     result += p.GetType().Name[0];
     p.n     = 101;
 }
Exemplo n.º 4
0
 public void Value_2_Boxing(ArgumentTypes.Value p)
 {
     Console.WriteLine("ok");
 }
Exemplo n.º 5
0
 public static void To_Value(ArgumentTypes.Value p)
 {
     result += p.GetType().Name[0];
 }