コード例 #1
0
ファイル: Program.cs プロジェクト: rwpcpe/pattern-of-the-week
    private static void WithDecoratorClass()
    {
        // Decorate the class
        var pp = new PrintablePerson(new Person());

        pp.FirstName = "John";
        pp.LastName  = "Public";

        pp.Print();
    }
コード例 #2
0
ファイル: Program.cs プロジェクト: rwpcpe/pattern-of-the-week
    private static void WithDecoratorClass()
    {
        // Decorate the class
        var pp = new PrintablePerson(new Person());

        pp.FirstName = "John";
        pp.LastName = "Public";

        pp.Print();
    }