2015-07-13 85 views
0

我在使用資源文件時遇到了一個問題。我正在使用Resource文件來保存變量的值。現在當我訪問資源文件時,它不顯示鍵(屬性),直到我將它分配給另一個變量。即資源文件未顯示其屬性

var tempVar = ResourceFileName.Variable1 // it shows Variable1 in intellisense. 

,但如果我使用

ResourceFileName.Variable1 //it doesn't show up. 

即使我return語句即

return ResourceFileName.Variable1 // doesn't work. 

PS:我已經添加引用用於類庫項目資源文件和訪問它們。

任何幫助將不勝感激。

感謝 阿莫德

回答

0

對不起球員,這是我的錯。我在方法之外使用它。我的錯!!