在我的*.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
错误。
是否可以修复上面的代码行以使其正常工作?