當我構建我的項目時,VC#表示不允許使用默認參數說明符。它導致我到這個代碼:C#上不允許默認參數說明符錯誤
public class TwitterResponse
{
private readonly RestResponseBase _response;
private readonly Exception _exception;
internal TwitterResponse(RestResponseBase response, Exception exception = null)
{
_exception = exception;
_response = response;
}
什麼可能是我的錯誤?
準確的錯誤信息是什麼?哪條線? – dtb
您使用的是哪個版本的Visual Studio和哪個.NET框架? [this](http://stackoverflow.com/q/7822450/76217)有幫助嗎? – dtb
http://stackoverflow.com/questions/7822450/default-parameter-specifiers-are-not-permitted – Habib