예제 #1
0
파일: Program.cs 프로젝트: wushian/Stacks
        static void Main(string[] args)
        {
            var formatter = new Formatter();
            var helloPrinter = new Hello(formatter);

            helloPrinter.SayHelloToFriends(new[] { "Stan", "Scott", "John" });
        }
예제 #2
0
파일: Program.cs 프로젝트: wushian/Stacks
 public Hello(Formatter formatter)
 {
     this.formatter = formatter;
 }