コード例 #1
0
 public Book(string title, string author)
 {
     Title           = title;
     this.type       = Book_Access.no_restrictions;
     this.timeToRead = 1000;
     this.Author     = author;
 }
コード例 #2
0
 public Book(string title)
 {
     Title           = title;
     this.Author     = "Somebody";
     this.type       = Book_Access.no_restrictions;
     this.timeToRead = 1000;
 }
コード例 #3
0
 public Book(string title, string author, Book_Access type, int time)
 {
     Title           = title;
     this.type       = type;
     this.timeToRead = time;
     this.Author     = author;
 }
コード例 #4
0
 public Book(string title, Book_Access type, int time)
 {
     Title           = title;
     this.type       = type;
     this.timeToRead = time;
     this.Author     = "Somebody";
 }