As per your error message, you can't do that in v3.5.
The work around is multiple constructors:
bool listUnsubscribe(string apikey,
string id,
string email_address) {
return listUnsubscribe(apikey, id, email_address, false, true, true);
}
bool listUnsubscribe(string apikey,
string id,
string email_address,
bool delete_menber,
bool send_goodbye,
bool send_notify) {
return whatever;
}
与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…