コード例 #1
0
ファイル: Program.cs プロジェクト: mengtest/DesignPattern
        static void Main(string[] args)
        {
            ILegendFactory factory = new SymbolFactory();

            Console.WriteLine(factory.Create().Name);
            Console.ReadKey();
        }
コード例 #2
0
ファイル: Program.cs プロジェクト: AndyMolly/DesignPattern
 static void Main(string[] args)
 {
     ILegendFactory factory = new SymbolFactory();
    Console.WriteLine( factory.Create().Name);
    Console.ReadKey();
 }