示例#1
0
 public static void OutClass(out Static @static, int Id)
 {
     @static = Static.Create(Id);
 }
示例#2
0
 public static bool RefClassPassNull(ref Static @static)
 {
     return(@static == null);
 }
示例#3
0
 public static void RefClassAssignPlus(ref Static @static, int plus)
 {
     @static = Static.Create(@static.Id + plus);
 }
示例#4
0
 public static void RefClassRetNull(ref Static @static)
 {
     @static = null;
 }
示例#5
0
 public static int RefClass(ref Static @static)
 {
     return(@static.Id);
 }