Inheritance: FanObj, Facet
示例#1
0
文件: Deprecated.cs 项目: nomit007/f4
 public static Deprecated make(Func func)
 {
     Deprecated self = new Deprecated();
       if (func != null)
       {
     func.enterCtor(self);
     func.call(self);
     func.exitCtor();
       }
       return self;
 }
示例#2
0
        public static Deprecated make(Func func)
        {
            Deprecated self = new Deprecated();

            if (func != null)
            {
                func.enterCtor(self);
                func.call(self);
                func.exitCtor();
            }
            return(self);
        }