示例#1
0
文件: Book.cs 项目: Jimmyscene/Random
 public Book(string title, string ISBN, string Publisher, int year, Person author)
 {
     this.Title=title;
     this.ISBN=ISBN;
     this.Publisher=Publisher;
     this.Year=year;
     this.Author=author;
 }
示例#2
0
文件: Book.cs 项目: Jimmyscene/Random
 public void setAuthor(Person Author)
 {
     this.Author=Author;
 }