gpt4 book ai didi

c# - 如何使 List> *.cshtml/razor - 兼容?

转载 作者:行者123 更新时间:2023-11-30 13:26:48 27 4
gpt4 key购买 nike

在我的 *.cshtml文件,我想要类似的东西

@List<List<int>> exps = new List<List<int>>(){ new List<int>(){1}, new List<int>(){2}, new List<int>(){3, 4}};

(int 将被更复杂的类型取代...)当我运​​行包含上述行的页面时,我得到 CS0305: Using the generic type 'System.Collections.Generic.List<T>' requires 1 type arguments错误。

是否可以修复上面的代码行以使其正常工作?

最佳答案

我相信这只是不正确的 Razor 语法。这样它应该可以正常工作:

@{
List<List<int>> exps = new List<List<int>>(){ new List<int>(){1}, new List<int>(){2}, new List<int>(){3, 4}};
}

然后可以像这样通过 View 轻松访问列表:@exps

关于c# - 如何使 List<List<int>> *.cshtml/razor - 兼容?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/17408229/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com