私の*.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
エラーが発生します。
動作するように上記のコード行を修正することは可能ですか?