我对 .NET 非常陌生,习惯于使用 PHP。我需要遍历foreach
对象字典。我的设置是一个 MVC4 应用程序。
模型如下所示:
public class TestModels
{
Dictionary<int, dynamic> sp = new Dictionary<int, dynamic>
{
{1, new {name="abc", age="1"}},
{2, new {name="def", age="2"}}
}
}
控制器:
public class TestController : Controller
{
Models.TestModels obj = new Models.TestModels();
}
如何遍历obj
对象并检索字典的值并将它们打印在视图中?