public bool IsRome(int days) { if (days <= 1) { // Don't you know that? throw new NotImplementedException(); } return true; }
public bool IsRome(int days) { if (days <= 1) { // Don't you know that? throw new NotImplementedException(); } return true; }