コード例 #1
0
 public Author(string name, string birthday, Literature.Book book)
 {
     _name     = name;
     _birthday = birthday;
     bookOne   = book;
 }
コード例 #2
0
 public Author()
 {
     _name     = "Kirja Maija";
     _birthday = "01.05.1500";
     bookOne   = new Literature.Book();
 }