我有类似的东西:
mm
我知道这是错的,但我如何从LIST中获取2个元素?
答案 0 :(得分:0)
您可以使用以下代码(在Controller中):
public ActionResult Index()
{
var sampleList = new List<Tuple<string,string>>()
{
new Tuple<string, string>("Amir","Niasari"),
new Tuple<string, string>("Mehdi","Irani")
};
return View(sampleList);
}
然后(在视图中):
@model List<Tuple<string, string>>
@{
foreach (var v in Model)
{
<h2>
@v.Item1 , @v.Item2
</h2>
}
}
&#13;