This is especially an issue for attribute routing:
[HttpGet("{id?}")]
public string Get(string id) { }
doesn't work unless you add a default value
[HttpGet("{id?}")]
public string Get(string id = null) { }
[HttpGet("{id?}")]
public string Get(string id) { }
doesn't work unless you add a default value
[HttpGet("{id?}")]
public string Get(string id = null) { }