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
ファイル: Deprecated.cs プロジェクト: syatanic/fantom
        public static Deprecated make(Func func)
        {
            Deprecated self = new Deprecated();

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