コード例 #1
0
ファイル: Program.cs プロジェクト: WhiteNR/LevelUpRepository
        static void Main(string[] args)
        {
            Author author = new Author("Steve", "Balmer");
            author.PropertyChanged += author_PropertyChanged;
            author.AuthorLastName = "aaa";

            Console.ReadKey();
        }
コード例 #2
0
ファイル: Book.cs プロジェクト: WhiteNR/LevelUpRepository
 public Book(Author author, string bookName)
 {
     _author = author;
     _bookName = bookName;
 }
コード例 #3
0
ファイル: Book.cs プロジェクト: WhiteNR/LevelUpRepository
 public Book()
 {
     _author = new Author();
     _bookName = "";
 }