0

我的 MVC3 homecontroller 的 Index 方法中有以下代码。我正在尝试的是,从我的资源文件 (.resx) 中获取值并在视图中显示它们。

private ResourceManager rm = null;
private ResourcesTexts text;

public ActionResult Index()
{
  text = new ResourcesTexts();
  rm = new ResourceManager("Credit.SiteResources", Assembly.GetExecutingAssembly());
  var res = rm.GetResourceSet(CultureInfo.CurrentCulture, true, true);

foreach (DictionaryEntry resource in res)
{
  if (resource.Key.ToString().Count() == 14)
    {
     string x = resource.Value.ToString();
    text.myList.Add(x);
    }
}

return View(text);
}

调试时出现空引用错误。

有什么帮助吗?

在我看来,我正在尝试这样的事情。

@foreach(var x in Model.myList.Item)
{
    <p>@x</p>
}

我该如何解决?

4

1 回答 1

2

试试这个:

text = new ResourcesTexts();
text.myList = new List<string>();

或者

ResourcesTexts在构造函数中创建列表

于 2012-10-30T13:33:39.853 回答