When I build my project, VC# says Default parameter specifiers are not permitted. And it leads me to this code:
public class TwitterResponse
{
private readonly RestResponseBase _response;
private readonly Exception _exception;
internal TwitterResponse(RestResponseBase response, Exception exception = null)
{
_exception = exception;
_response = response;
}
What could be my mistake?