我在try-catch中沒有初始化的變量。如何初始化try-catch中的變量?
try
{
var customcontroldata = svc.queryLookupsXml("customcontroldata");
}
catch
{
Response.Write(@"<script>alert('We laugh at you');window.location.replace('Accounts.aspx');</script>");
Response.End();
}
我試圖初始化try-catch之外的變量來完成任務。我怎麼會得到customcontroldata變量初始化在這個方法中,這也是在我的代碼中稍後使用?
將它初始化爲什麼? – Matthew
@canon然後try/catch將是空的,因此毫無意義。 – Matthew
好吧,當我寫它的變量變灰了。所以它像VAR(灰色)customercontroldata(/灰色)=和我得到的編譯錯誤是「名稱customecontroldata」不存在當前上下文中。 – TheDizzle