상속: 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);
        }