コード例 #1
0
ファイル: Program.cs プロジェクト: WHUynl/Yanshi
        static void Main(string[] args)
        {
            SimpleFactory s = new SimpleFactory();
            Foruser       f = new Foruser(s);

            f.makePainting();
        }
コード例 #2
0
ファイル: Program.cs プロジェクト: WHUynl/Yanshi
 public Foruser(SimpleFactory sf)
 {
     this.sf = sf;
 }