示例#1
0
        static void Main(string[] args)
        {
            ILegendFactory factory = new SymbolFactory();

            Console.WriteLine(factory.Create().Name);
            Console.ReadKey();
        }
示例#2
0
 static void Main(string[] args)
 {
     ILegendFactory factory = new SymbolFactory();
    Console.WriteLine( factory.Create().Name);
    Console.ReadKey();
 }