###仕様を明確にする - Field can be readonly 初期化時だけセットするフィールドはreadonlyにすることで、副作用を防ぐことができる(安全弁になる)。
public class Book
{
private string readonly name;
private int readonly ISBN;
public Book(string name, int isbn)
{
this.name = name;
this.ISBN = isbn;
}
}